Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I'm trying to save just ONLY one sheet from a work book to with many sheet's to a new htm(l) file. But with the following code, it saves all the sheets and just defaults to the one sheet when the htm file is opened, but all sheets are there and visible and can be selected. Any help would be appreciated. Thanks in andvance, -Randy W $excel = new COM("Excel.Application") or die('...'); $excel - Workbooks - Open($file); $book = $excel - Workbooks(1); $sheet = $book - Worksheets(1); $newfilename = getcwd()."\graph.htm"; $sheet - SaveAs($newfilename,44); // <- trying to save just one sheet as htm file. $book - Close(true); unset($sheet); unset($book); $excel - Workbooks - Close(); $excel - Quit(); |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I email one sheet from within an excell work book file | Excel Worksheet Functions | |||
copy the same raws of all sheets from about a 100 file to a new sheet of a book and save the file | Setting up and Configuration of Excel | |||
Save and Saveas Greyed out on tool bar and file menu | Setting up and Configuration of Excel | |||
Is there away to keep "auto save" from jumping to the first work sheet in the work book? | New Users to Excel | |||
copy printarea from more than 3 sheet & save in new book. | Excel Programming |