XL98: How to Programmatically Save a Worksheet as HTML
ID: Q178861
|
The information in this article applies to:
-
Microsoft Excel 98 Macintosh Edition
SUMMARY
This article shows you how to save a worksheet in the Hypertext Markup Language (HTML) format programmatically.
MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty
either expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes that you
are familiar with the programming language being demonstrated and the tools used to
create and debug procedures. Microsoft support professionals can help explain the functionality
of a particular procedure, but they will not modify these examples to provide added
functionality or construct procedures to meet your specific needs. If you have limited
programming experience, you may want to contact a Microsoft Certified Solution Provider
or the Microsoft fee-based consulting line at (800) 936-5200. For more information about
Microsoft Certified Solution Providers, please see the following page on the World Wide Web:
http://www.microsoft.com/mcsp/
For more information about the support options available from Microsoft, please see the
following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/overview/overview.asp
The following example uses the HTMLconvert method of the Internet Assistant Wizard to create a Web page.
- Close and save any open workbooks, and then create a new workbook.
- Enter the following values on Sheet1:
A1 : 2
A2 : 4
A3 : 6
A4 : 8
A5 : 10
A6 :
A7 : This
A8 : is
A9 : a
A10: test
- Select cells A1:A5, and then click Chart on the Insert menu. In the Chart Wizard - Step 1 of 4 - Chart Type dialog box, click Finish.
The result is a worksheet that contains two data ranges and one chart.
- Start the Visual Basic Editor (press OPTION+F11).
- To use the Htmlconvert method of the Internet Assistant Wizard add-in, create a reference to this add-in. To create the reference, do the
following:
- Click References on the Tools Menu.
- Click to select the HTML check box, and then click OK.
If you do not see HTML in the Available References list, continue with step c. Otherwise, go to step 6.
- If you do not see HTML in the Available References list,
click Browse.
- Open the folder that contains the updated Html.xla file. By
default, the Internet Assistant Wizard file is installed in the
following folder:
Microsoft Office 98:Office:Excel Add-ins
- Click Microsoft Excel Files in the List Files of Type list.
- Click Internet Assistant Wizard in the list of files, and then
click Open.
- Click Module on the Insert menu to insert a Visual Basic module.
- Enter the following code into the module sheet:
Sub CreateWebPage()
Dim ObjToConvert(2) As Variant
Dim Result As Integer
' Populate the ObjToConvert array with the ranges and chart
' that you want to export.
Set ObjToConvert(0) = Sheets("sheet1").Range("a1:a5")
Set ObjToConvert(1) = Sheets("sheet1").ChartObjects("Chart 1")
Set ObjToConvert(2) = Sheets("sheet1").Range("a7:a10")
' Create the HTML page.
Result = htmlconvert(rangeandcharttoconvert:=ObjToConvert, _
useexistingfile:=False, _
usefrontpageforexistingfile:=False, _
addtofrontpageweb:=False, codepage:=1252, _
htmlfilepath:="Test.htm", _
headerfullpage:="Test Page", _
linebeforetablefullpage:=True, _
namefullpage:="MyName")
' If the conversion is successful, the code htmlconvert_success
' is returned.
If Result = htmlconvert_success Then
MsgBox "Web Page Created Successfully"
Else
MsgBox "Error Creating Web Page"
End If
End Sub
- Run the CreateWebPage subroutine.
When you run the macro, a message box appears that indicates that the Web page was created successfully. You have two additional files in the current
folder: Test.htm and Test0.gif. Test.htm is the HTML file, and Test0.gif
is the chart that you converted.
If you run this subroutine several times, the Test.htm file is always
overwritten, and a new .gif file is created each time. If, for example, you
run the CreateWebPage subroutine six times, six .gif files are created. The
Test.htm file points to Test5.gif, which is the latest .gif file.
Additional query words:
XL98
Keywords : xlvbahowto xlvbainfo xlwiz xladdins
Version : MACINTOSH:
Platform : MACINTOSH
Issue type : kbhowto
|