cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
Choose Language Hide Translation Bar
AdamChoen
Level III

copy column cell to different column

hi 

I'm trying to copy all row that is gender "male" from column "age" to column "gender"

this syntax doesn't work.

appreciate any help!

age is a character column (Young, adult etc.)

dt <<Select Where(:gender== "M");
:age << Get Value;
:gender << paste;
Thanks, Adam
1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: copy column cell to different column

Here is the code that I would use....others may have better

Names Default To Here( 1 );
dt = Current Data Table();

selRows = dt << Get Rows Where( :gender == "M" );
For( i = 1, i <= N Rows( selRows ), i++,
	:gender[selRows[i]] = Char( :age[selRows[i]] )
);
Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: copy column cell to different column

Here is the code that I would use....others may have better

Names Default To Here( 1 );
dt = Current Data Table();

selRows = dt << Get Rows Where( :gender == "M" );
For( i = 1, i <= N Rows( selRows ), i++,
	:gender[selRows[i]] = Char( :age[selRows[i]] )
);
Jim
AdamChoen
Level III

Re: copy column cell to different column

working great thank you 

Thanks, Adam