Mac OS X
Q: Use Applescript to Filter Column A in Numbers
Hi there,
Using Applescript and Numbers, I want to filter column A by three values, then copy the result to a new sheet.
The document I'm working on contains thousands of lines and Numbers handles this a lot faster than Excel on my mac, so if possible, I'd like to find a solution that works in Numbers.
I guess the filter part would look something like this? (although obviously, this isn't working)
tell application "Numbers"
tell document 1's sheet 1's table 1
tell column 1
string = "Adam, Jane, David"
set filtered to true
end tell
end tell
end tell
Posted on Oct 17, 2016 4:13 AM