L
Liam Doyle
Hi all,
I have written a vb macro for excel to work cross platform. In this macro it
prompts the user to find a CSV file and then opens it (which it then copies/
pastes into my template). The basic code for the mac section is:
sImportFile = Application.GetOpenFilename(, , "Please select your class list")
If sImportFile <> False Then
Workbooks.OpenText FileName:=sImportFile, DataType:=xlDelimited,
Comma:=True
This worked on Excel v.X but now on 2004 it tells me it can't find the file (I
have checked multiple files and checked that they're there ;-))
Anyone have any idea why this might not work?
Thanks a lot in advance,
Liam
I have written a vb macro for excel to work cross platform. In this macro it
prompts the user to find a CSV file and then opens it (which it then copies/
pastes into my template). The basic code for the mac section is:
sImportFile = Application.GetOpenFilename(, , "Please select your class list")
If sImportFile <> False Then
Workbooks.OpenText FileName:=sImportFile, DataType:=xlDelimited,
Comma:=True
This worked on Excel v.X but now on 2004 it tells me it can't find the file (I
have checked multiple files and checked that they're there ;-))
Anyone have any idea why this might not work?
Thanks a lot in advance,
Liam