Posts: 44
Threads: 10
Joined: Aug 2015
I've spent the last 30 minutes reading all of the threads on excel, so i tried!!!
ALL i want.... it's so simple
a script that will copy the data from F7
that's it... and I want to know how to change the script (like copy from F8)
Posts: 12,073
Threads: 140
Joined: Dec 2002
To find such things, at first try the "Find help, functions, tools" field in QM window. Steps:
1. Type get Excel cell and press Enter.
2. Click ExcelSheet.Cell or ExcelSheet.CellsToArray in the popup list.
3. Look in the bottom of QM window, there are examples too.
Posts: 44
Threads: 10
Joined: Aug 2015
ExcelSheet es.Init
str s
s=es.Cell(6 7) ;;get cell F7
It "gets it?"
How can I tell it to COPY to the clipboard what's in cell F7 (which is just a number)
Posts: 44
Threads: 10
Joined: Aug 2015
ExcelSheet es.Init
str s
s=es.Cell(6 7) ;;get cell F7
s.setclip
GOT IT! BAM!