cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
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!!