cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Choose Language Hide Translation Bar
View Original Published Thread

operation column

NetflixCrow956
Level III

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