I want to use AppleScript to find a TAG cell I put next to sets of data, so that I can then link to those values on a separate results sheet.
At the moment all I get is errors telling me that this, that and the other doesn't understand find. Here's the script:
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
I'm a complete beginner with this so completely stumped