Jump to content

Export an Excel graph and sheet in html


zok
 Share

Recommended Posts

I'm asking if somebody can help me on developing a script to automatically export a chart and sheet from Excel. The tool must save an Excel chart/sheet in html accordingly to a schedule: for example every xx minutes or better, when yy minutes of the current hour are past (e.g yy=15 means at 8:15 and 9:15 and 10:15 and ... so all over the 24 hours).

I can give more details if needed.

thanks

Link to comment
Share on other sites

  • 1 month later...

look into the Excel COM UDF 's _ExcelBookSaveAs command. It can save an excel document as a *.HTM, the charts will be in PGN format in an other directory with the same name as the htm file, but you'll have to realize that the pgn itself will only contain the charts computed (graphed) part, and no X,Y rulers or whatever are their names.

but if you can figure something out, let me know please.

Link to comment
Share on other sites

  • 5 years later...

I'm asking if somebody can help me on developing a script to automatically export a chart and sheet from Excel. The tool must save an Excel chart/sheet in html accordingly to a schedule: for example every xx minutes or better, when yy minutes of the current hour are past (e.g yy=15 means at 8:15 and 9:15 and 10:15 and ... so all over the 24 hours).

I can give more details if needed.

thanks

 this's easy code :

#include <ie.au3>
#include <excel.au3>
_IECreate("www.autoitscript.com")
$dir = FileSaveDialog("export", @DesktopDir, "Microsoft office 2003(*.xls)|Microsoft office 2007 (*.xlsx)", 2, "filename")

$file = FileOpen(@TempDir & "\tmp.html", 2 + 8 + 32)
FileWrite($file, _IEDocReadHTML($oie))
FileClose($file)
        
$xls = _ExcelBookOpen(@TempDir & "\tmp.html", 0)
_ExcelSheetNameSet($xls, "sheet name here")
_ExcelBookSaveAs($xls, $dir, "xls", 0, 1, "", "", 2)
$xls.quit()
FileDelete(@TempDir & "\tmp.html")
Link to comment
Share on other sites

lpduy,

user zok was last online on 2008-02-28. So your reply will not reach him.

But anyway: Welcome to the forum!

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...