I am using the following code to publish a portion of my worksheet as a web page:
I would like to insert a MetaRefresh tag into the html as the sheet is saved.
Does anyone know how to do that?
Code:
Sub SavetoWeb()
Sheets("worksheet").Select
ActiveWindow.ScrollRow = 1
Range("B1:E15").Select
ActiveWorkbook.PublishObjects.Add(xlSourceRange, _
"C:\Documents and Settings\savarin\My Documents\worksheet.html", "worksheet", "$B$1:$E$15" _
, xlHtmlStatic, "astrodata_3987", "").Publish (True)
End Sub
I would like to insert a MetaRefresh tag into the html as the sheet is saved.
Does anyone know how to do that?