Just a quick question. I am trying to loop through 100 files in the same folder. Idea is to copy the value in one cell ("H9") and paste it into each subsequent row in a new workbook (wbf). I have attached the code I am working with but cant figure out how to go to next row.
Do While myFile <> ""
Set wb = Workbooks.Open(filename:=myPath & myFile)
wb.Worksheets(1).Range("A10").Value = wbf.Worksheets(1).Range("A" & "start").Value
myFile = Dir
Loop
Thanks