Notepad and Excel

  • Thread starter Thread starter Leif Rasmussen
  • Start date Start date
L

Leif Rasmussen

How to make VBA code that export Excel data to a Note pad
file as comma sep. value ?

Kind regards Leif
 
Leif,

The SaveAs method has a FileFormat property which you can set to xlCSV in
VBA. For example

Activeworkbook.SaveAs Filename:="C:\Test", FileFormat:=xlCSV
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top