cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
NetflixCrow956
Level III

operation column

Hello everyone, I would like to create a column from this column: if the term "H9" appears, put only H9 on the new column and I do not know how to do? Thanks

NetflixCrow956_0-1655108752834.png

 

If( Column(dt,"Operation Status") << Left( HOLD, Contains( Hold,"9" ) ),
dt<< New Column ("status", character , "Nominal");
);
1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: operation column

Here is one solution

Names Default To Here( 1 );
current data table << New Column( "Is Hold",
	character,
	formula,
	If( Contains( Words( :Operation Status, ", " ), "H9" ),
		"H9",
		""
	)
);
Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: operation column

Here is one solution

Names Default To Here( 1 );
current data table << New Column( "Is Hold",
	character,
	formula,
	If( Contains( Words( :Operation Status, ", " ), "H9" ),
		"H9",
		""
	)
);
Jim