View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
mudraker[_191_] mudraker[_191_] is offline
external usenet poster
 
Posts: 1
Default Save .csv with overwrite

This will save your active book as a csv file


Application.DisplayAlerts = False

ActiveWorkbook.SaveAs FileName:= _
"D:\My Documents\Book1.csv", FileFormat:= _
xlCSV, CreateBackup:=False

Application.DisplayAlerts = Tru

--
Message posted from http://www.ExcelForum.com