zok Posted February 26, 2008 Posted February 26, 2008 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
zok Posted February 28, 2008 Author Posted February 28, 2008 another solution can be that of parsing the excel workbook and export all the found charts as image files in a defined directory.
ohgod Posted April 8, 2008 Posted April 8, 2008 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.
lpduy Posted June 20, 2013 Posted June 20, 2013 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")
water Posted June 20, 2013 Posted June 20, 2013 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 2024-07-28 - Version 1.6.3.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 (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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now