如何使用Applescript从Excel中的单元格引用中提取行号?

时间:2014-03-15 02:15:17

标签: excel applescript

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行不会编译,但我需要这些内容。

1 个答案:

答案 0 :(得分:2)

要获取单元格和行号,您可以使用Excel first row index类中的first column indexrange

我建议你深入学习Excel Applescript字典,其中有很多线索可供尝试使用。

对于你的情况:

set rw to the first row index of the active cell