View Single Post
You could use an AppleScript like this to do it:

Code:
tell application "OmniOutliner Professional"
	tell front document
		delete (every row whose value of cell "Topic" is equal to "")
		
	end tell
end tell