In VBA, I have a Workbooks.OpenText command:
Workbooks.OpenText Filename:=strFileToOpen, StartRow:=11, DataType:=xlDelimited, Tab:=True, TrailingMinusNumber:=True
However, instead of opening up file by file and adding it to my workbooks. I would like to point this to a Directory, and have VBA (Excel) perform the Workbooks.OpenText function for each file in the directory. How do I do that?