Jump to content

Pasting from clipboard to excel


Recommended Posts

Hi,

 

Wondering what I'm doing wrong.

as per my script, I activate an external program, copy data from it and I want to paste it into excel, after I clear the current sheet that is there.

It is some sort of an array as when I manually paste it into excel it expands across rows and down columns (number of which varies).

This repeats for Xno. of program instances, and consequently I would want it to cycle through x sheets.

So far I have the following, noting that I dont have the sheet clearing thing detailed yet, but I get the following error: "Error copying cells. @error = 4, @extended = -2147352567"

 

func Primary()
    For $i=0 to ubound($term)-1
        WinActivate($term[$i])
        sleep(500)
        MouseClick("left",$OptX,$opty)
        Clipput("")
        sleep(500)
        send("!a")
        sleep(100)
        Do
            sleep(100)
            until Clipget()
        ;activates sheet no. specified by $i+ 1, removes data from sheet and pastes new data, cycles to the next sheet
        
        ;function to clear sheet
        _Excel_RangeCopyPaste($oWorkbook1.Worksheets($i+1), Default , "A1")
If @error Then Exit MsgBox($MB_SYSTEMMODAL, "Excel UDF: _Excel_RangeCopy Example 2", "Error copying cells." & @CRLF & "@error = " & @error & ", @extended = " & @extended)
MsgBox($MB_SYSTEMMODAL, "Excel UDF: _Excel_RangeCopy Example 2", "Range 'A1' from workbook _Excel3.xls successfully copied to 'G15'.")
        Next
EndFunc

 

Any help would be great.

Link to comment
Share on other sites

-2147352567 (dec) translates to 0x80020009 (hex) which means. General Error.
Which version of AutoIt do you run?

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

The alternative would be to do things a little more manual:

* activate excel

*active the sheet (how do I do this? either using the excel UDF or manually, avoiding MouseClick)

*send("^a")

*send("{DEL}")

* send ("^{HOME}")

*send("^v")

next ...

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

×
×
  • Create New...