Jump to content

Go to cell B15 in excel


 Share

Recommended Posts

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 by Blue_Drache

Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache

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...