View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Nigel Nigel is offline
external usenet poster
 
Posts: 923
Default Help with SaveAs

The default for xlText is a Tab, so you do not need another parameter. Try
it and take a peek at the file using a wordprocessor.

--
Cheers
Nigel



"Glen Mettler" wrote in message
...
I need to save and xls file as a tab delimited text file
This is my code:
ActiveWorkbook.SaveAs Filename:=filetosave, FileFormat:=xlText

is the default delimiter a tab or do I need to add another parameter?

Glen