0

我想使用 AppleScript 来查找放在数据集旁边的 TAG 单元格,这样我就可以在单独的结果表上链接到这些值。

目前我得到的只是错误告诉我这个、那个和另一个不理解 find。这是脚本:

tell application "Microsoft Excel"
    tell active workbook
        activate object worksheet "1001"
        tell sheet "1001"
            set searchRange to used range
            tell searchRange
                (find searchRange what "TAG")
            end tell
        end tell
    end tell
end tell

我是一个完全的初学者,完全被难住了

4

1 回答 1

0

以下对我来说非常有效:(此代码介于tell sheet "1001"和之间end tell):

set searchRange to used range
try
    set foundRange to find searchRange what "blurp" with match case
    (* do something with the foundRange *)
on error -- not found
    (* do error handling *)
end try

如果找到"blurp",则返回一个范围(类似于range "'[Workbook1]1001'!$D$4" of application "Microsoft Excel"),否则抛出错误(这仅表示未找到您搜索的内容)。

于 2012-03-07T13:49:11.593 回答