how do I stop warnings when saving .xls as csv?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to save an Excel file as a csv file on a reasonable regular basis can
I turn the warnings as I seem to be saving twice at least during the close
operation.
 
Hi
in VBA you could use
application.displayalerts=false
'your save code
application.displayalerts=true
 

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

Back
Top