I did this:

ON testFunction
    breakpoint
    put "1,2,3" & return & "4,5,6" into myVar
    split myVar by column
    delete variable myVar[2]
    combine myvar by column
    put myVar
END testFunction

After splitting, myVar looks like this:




after combining myVar looks like this:

What I get is:
1,2,3
4,5,6

As you can see it didn't delete anything, and the array doesn't look ANYTHING like it should. .

Bob Sneidar
IT Manager
Logos Management
Calvary Chapel CM

On Feb 9, 2009, at 2:50 PM, Alex Tweedly wrote:

[ 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

_______________________________________________
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