mikezwet2 Posted November 10, 2007 Posted November 10, 2007 Hello, I have searched but couldn't find this simple script step. How can i go for example cell B15 in a excel sheet ? Greetz, Mike Zwetsloot Kunststof Kozijnen Fabriek and Mike Zwetsloot
Blue_Drache Posted November 10, 2007 Posted November 10, 2007 (edited) Search for the ExcelCOM_UDF.au3 ... it will help. But for a basic way to do what you're asking: #include <ExcelCOM_UDF.au3> Opt('WinTitleMatchMode', 4) $hwndXL = WinGetHandle("Microsoft Excel") If WinExists($hwndXL) Then WinActivate($hwndXL) WinWaitActive($hwndXL, "", 60) $oExcel = ObjGet("", "Excel.Application") $oExcel.Range("B15").activate EndIf Edited November 10, 2007 by Blue_Drache Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache
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