cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • See how to design an experiment, explore factor-response relationships, assess tradeoffs, and ID best settings. Register for Sep. 11 Mastering JMP.

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.pngConfidenceOwl94_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.pngtxnelson_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.pngtxnelson_0-1712087717293.png

 

Jim

Re: How to add final test check column.

Thank you!!

Recommended Articles