I am trying to read row of columns into a lists. But so far no success. Also it seems pretty slow when it reads.
Any suggestions on how to do this and make it fast?? I get this error Numbers got an error: Can’t make «class » “B4:I4” of table “Table 1” of sheet “FM1” of document “RSC.numbers” into type reference.
thanks
Roger
display dialog “Enter Table Number:” default answer “1” buttons {“Restart”, “Cancel”, “Next”} default button 3
set RSCFile to “Macintosh HD 2:RSC:RSC.Numbers”
– open numbers
tell application “Numbers”
launch
activate
-- set file
set RSCDoc to (open RSCFile)
-- tell numbers file to
tell RSCDoc
tell table 1 of sheet 1
copy range "B4:I4" to myCitType
set myTemp to item 1 of myCitType
display dialog myTemp
end tell
end tell
end tell