D
dipsy
Sub createPlanID()
Sheets("2004Data").Copy
ActiveWorkbook.SaveAs Filename:= _
"C:\New\PlanId.csv" _
, FileFormat:=xlCSV, CreateBackup:=False
End Sub
The following VBA code creates the Plan ID file. However
when I go to open the file it gives me error - SYLK: File
format not valid.
I want to take a sheet from one book and save it as a
newbook as a Comma Separated file.
Thanks.
Sheets("2004Data").Copy
ActiveWorkbook.SaveAs Filename:= _
"C:\New\PlanId.csv" _
, FileFormat:=xlCSV, CreateBackup:=False
End Sub
The following VBA code creates the Plan ID file. However
when I go to open the file it gives me error - SYLK: File
format not valid.
I want to take a sheet from one book and save it as a
newbook as a Comma Separated file.
Thanks.