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

How to add final test check column.

I have a table where some products were tested multiple times. I want to flag the last run by '1' in a new column.

 

ConfidenceOwl94_0-1712084019146.png

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: How to add final test check column.

Here is one way to handle this......

If( Col Max( Row(), :SN ) == Row(),
1,
0
)

txnelson_0-1712087717293.png

 

Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: How to add final test check column.

Here is one way to handle this......

If( Col Max( Row(), :SN ) == Row(),
1,
0
)

txnelson_0-1712087717293.png

 

Jim

Re: How to add final test check column.

Thank you!!

Recommended Articles