A
Arturo
The named range ‘FileList’ houses file names in a current directory I’m
trying to loop through that list but am not sure how to get this set up
correctly… I get a blank MsgBox and in turn the first file does not open. I
want to learn how to stay out of the spreadsheet for this issue using arrays
but am a bit stuck at the moment…
Appreciatively,
Arturo
Sub LoopFiles()
Set myRange = Range("A1").CurrentRegion
ActiveWorkbook.Names.Add Name:="FileList", RefersToR1C1:=myRange
Files2Alter = Array(myRange)
While X <= UBound(Files2Alter)
MsgBox Files2Alter(X)
Workbooks.Open FileName:=Files2Alter(X), UpdateLinks:=0
‘Do X, Y & Z
‘Close file and save changes
Wend
End Sub
trying to loop through that list but am not sure how to get this set up
correctly… I get a blank MsgBox and in turn the first file does not open. I
want to learn how to stay out of the spreadsheet for this issue using arrays
but am a bit stuck at the moment…
Appreciatively,
Arturo
Sub LoopFiles()
Set myRange = Range("A1").CurrentRegion
ActiveWorkbook.Names.Add Name:="FileList", RefersToR1C1:=myRange
Files2Alter = Array(myRange)
While X <= UBound(Files2Alter)
MsgBox Files2Alter(X)
Workbooks.Open FileName:=Files2Alter(X), UpdateLinks:=0
‘Do X, Y & Z
‘Close file and save changes
Wend
End Sub