Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 74
Default Save as web page

I am using macro code to generate multiple workbooks from data in one large
workbook. After the individual workbooks are generated, they are each saved
with a unique file name.

How can I change the code to have it save in .htm format? The code I'm
currently using is below. I tried changing "FileExStr" to .htm, but that
doesn't work. I'm assuming I need a new file format, and tried searching
online but can't find it anywhere. Any suggestions?

Thanks!
Else
'You use Excel 2007
If ws1.Parent.FileFormat = 56 Then
FileExtStr = ".xls": FileFormatNum = 56
Else
FileExtStr = ".xlsx": FileFormatNum = 51
End If

then further down ..
'Save the file in the new folder and close it
WBNew.SaveAs foldername & " Value = " _
& cell.Value & FileExtStr, FileFormatNum
WBNew.Close False

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 533
Default Save as web page

Press F1 in the VBE for Help and search on Workbook "SaveAs". This will
lead to a page that has all the file format constants:

http://office.microsoft.com/client/h... EV&lcid=1033

You're interested in xlHtml which you should use instead of its literal
value 44.

--
Jim
"richzip" wrote in message
...
|I am using macro code to generate multiple workbooks from data in one large
| workbook. After the individual workbooks are generated, they are each
saved
| with a unique file name.
|
| How can I change the code to have it save in .htm format? The code I'm
| currently using is below. I tried changing "FileExStr" to .htm, but that
| doesn't work. I'm assuming I need a new file format, and tried searching
| online but can't find it anywhere. Any suggestions?
|
| Thanks!
| Else
| 'You use Excel 2007
| If ws1.Parent.FileFormat = 56 Then
| FileExtStr = ".xls": FileFormatNum = 56
| Else
| FileExtStr = ".xlsx": FileFormatNum = 51
| End If
|
| then further down ..
| 'Save the file in the new folder and close it
| WBNew.SaveAs foldername & " Value = " _
| & cell.Value & FileExtStr, FileFormatNum
| WBNew.Close False
|


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
Save, save as, page setup dimmed out in unprotected excel sheet? ccKeithJ Excel Discussion (Misc queries) 3 December 14th 07 07:07 PM
save page ,clear page, reuse same page dave Excel Programming 1 June 6th 07 06:01 AM
Save As... / Save as Web Page... how to differentiate? Jörgen Ahrens Excel Programming 1 February 20th 06 06:55 AM
How do I save one page out of a 80 page report in excel? bellamere New Users to Excel 2 February 15th 06 08:25 PM
Save as Web Page Eva Excel Discussion (Misc queries) 0 February 2nd 06 04:55 AM


All times are GMT +1. The time now is 09:09 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"