tell application "Microsoft Excel"
set ac to get address of active cell
-- set rw to row of ac
log ("Active cell: " & ac & return & "Row from Active Cell: " & rw)
end tell
第3行不会编译,但我需要这些内容。
答案 0 :(得分:2)
要获取单元格和行号,您可以使用Excel first row index
类中的first column index
和range
。
我建议你深入学习Excel Applescript字典,其中有很多线索可供尝试使用。
对于你的情况:
set rw to the first row index of the active cell