A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Rick,
Thanks for the reply but I still get errors with the first solution you presented (which should be the correct logic. I thought that it might be helpful to show you the code that is generated if I record the steps as a macro:
' With ActiveSheet.QueryTables.Add(Connection:= _
' "TEXT;C:\Users\FCC\Desktop\Data_2_Import.PRN", _
' Destination:=Range("$A$2"))
It looks like the correct syntax should be this then...
With ActiveSheet.QueryTables.Add(Connection:= "TEXT;" & strFilePath, Destination:=Range("$A$2"))