[ Sorry - I have deleted the original mail, so can't reply to it (or even find out the exact subject line ...) ]

deleting a column ...

I haven't tested extensively, but in a simple case or two, it seems to work just doing

 split tVar by column
 delete variable tVar[3]   -- to delete the 3rd column
 combine tVar by column

or if you want to delete the content of a column, but keep it there as an empty column, you can do

 split tVar by column
 put empty into tVar[3]
 combine tVar by column


-- Alex.
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to