Script for cutting & pasting from one column to the next?

Hi,

I’m seeking help putting together a script that cuts the text under the title (in other words, the body of the text) for columns in each row, and pastes that text in the column to the right.

In my set up, I’ve got the title and text body are in cells that fall under under a column heading named “Topic.” I want to either cut & paste or copy & paste the text – whatever is easier! – in the next column to the right (which has the " _note " column header).

I’d appreciate any help with this… Thanks!

Today had a couple of column-related questions and I ended up searching for other posts and stumbled over this one.

tell application "OmniOutliner"
	tell document 1		
		repeat with rr in rows			
			set value of cell 3 of rr to (get value of cell 2 of rr)
        -- This will then delete the contents of the source cell
			delete cell 2 of rr
		end repeat
	end tell
end tell