Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Help with CSV format

I have a workbook containing 15 sheets. I want to save out each sheet
seperately as a CSV file.
Something like this:
For each sheet in MyWorkbook
sheets().select
save this sheet as CSV
next

How can I do that programmaticly?

TIA
Glen


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Help with CSV format

Dim sh as Worksheet
for each sh in Activeworkbook.Worksheets
sh.copy
Activeworkbook.SaveAs Filename:="C:\MyCSVFolder\" _
& sh.Name & .csv, _
FileFormat:=xlCSV
ActiveWorkbook.Close Savechanges:=False
Next

--
Regards,
Tom Ogilvy



"Glen Mettler" wrote in message
...
I have a workbook containing 15 sheets. I want to save out each sheet
seperately as a CSV file.
Something like this:
For each sheet in MyWorkbook
sheets().select
save this sheet as CSV
next

How can I do that programmaticly?

TIA
Glen




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Help with CSV format

Tom,
Thanks. Works great!! When I looked at the object model, there didn't seem
to be an option to "overwrite" an existing file.
Is it possible to force an "overwrite" so I don't have to attend the "This
file exists, do you want to save anyway" popups?

Glen

"Tom Ogilvy" wrote in message
...
Dim sh as Worksheet
for each sh in Activeworkbook.Worksheets
sh.copy
Activeworkbook.SaveAs Filename:="C:\MyCSVFolder\" _
& sh.Name & .csv, _
FileFormat:=xlCSV
ActiveWorkbook.Close Savechanges:=False
Next

--
Regards,
Tom Ogilvy



"Glen Mettler" wrote in message
...
I have a workbook containing 15 sheets. I want to save out each sheet
seperately as a CSV file.
Something like this:
For each sheet in MyWorkbook
sheets().select
save this sheet as CSV
next

How can I do that programmaticly?

TIA
Glen






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Lock Cell Format - Allow copy and paste of data without format change Chris12InKC Excel Worksheet Functions 2 May 9th 23 07:42 PM
Adding time in 24 hour format to produce hours in decimal format Hercdriver Excel Worksheet Functions 11 December 29th 09 02:06 AM
Need help with converting CUSTOM format/TEXT format to DATE format Deo Cleto Excel Worksheet Functions 6 June 2nd 09 08:14 PM
Replace million-billion number format to lakhs-crores format Sumit Excel Discussion (Misc queries) 1 December 9th 05 04:58 PM
how to format excel format to text format with separator "|" in s. azlan New Users to Excel 1 January 31st 05 12:57 PM


All times are GMT +1. The time now is 02:23 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"