I have a .csv file that is processed with an excel macro, the file comes in as .csv, the macro moves the text to columns, and then I am trying to save the file still as .csv. I cannot seem to find a way to save the file without receiving the SAVE AS message box, and then followed by "FILE ALREADY EXISTS..." this is the code that I have tried, but does not seem to help, suggestions would be greatly appreciated!
Columns("A:A"
.Select
Application.DisplayAlerts = False
Selection.TextToColumns Destination:=Range("A1"
,
PROCESS MY TEXT TO COLUMNS HERE
ActiveWorkbook.Save
ActiveWorkbook.Close savechanges:=True
Application.DisplayAlerts = True
Diane
Columns("A:A"
Application.DisplayAlerts = False
Selection.TextToColumns Destination:=Range("A1"
PROCESS MY TEXT TO COLUMNS HERE
ActiveWorkbook.Save
ActiveWorkbook.Close savechanges:=True
Application.DisplayAlerts = True
Diane