Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Copy Cell F7
#1
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)
#2
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.
#3
Code:
Copy      Help
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)
#4
Code:
Copy      Help
ExcelSheet es.Init
str s
s=es.Cell(6 7) ;;get cell F7
s.setclip

GOT IT! BAM!


Forum Jump:


Users browsing this thread: 1 Guest(s)