I want to read multiple Excel files and insert a value in any cell declared in the code.

This code inserts the data in the workbook:
Sub InsertValueInCell()
Range("C3").Value = _
InputBox(Prompt:="Enter the value you want to insert.")
End Sub
I want the code to read multiple Excel files and after that I can insert a value in a specific cell for all those Excel files.


This should work for you: