cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

Recommended Articles