试图从 Excel 工作表中获取当前突出显示的单元格的值
set x to null
tell application "Microsoft Excel"
tell worksheet "Sheet1" of active workbook
set x to value of active cell as string
display dialog x
end tell
end tell
以上 AppleScript 将 x 设置为“缺失值”。我在这里做错了什么,还有其他方法可以获取活动单元格的值吗?
我正在为 MAC 版本 14.0.0 使用 Microsoft Excel 2011