Numbers: How to Select a Specific Column

When using KM with Numbers is there a way to select a specific column in a Numbers spreadsheet (e.g. Column "E").

Searching through the KM forum, I see that you might have to do this AppleScript. There's a post here, that explains how to select a specific cell, but nothing that explains how to select a whole column.

I Googled and found this page, which says you need to use the command set the selection range to column "H", but when I try this in KM, it just selects the whole table.

Any ideas?

Thanks!

This seems to work fine for me in both KM and Script Debugger:

tell application "Numbers"
	tell front document
		tell active sheet
			tell front table
				set the selection range to column "E"
			end tell
		end tell
	end tell
end tell
5 Likes

Perfect, thanks!

2 posts were split to a new topic: Numbers.app – Finding Values in a Table