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用のMicrosoftExcel2011を使用しています