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
ConfidenceOwl94
Level III

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
ConfidenceOwl94
Level III

Re: How to add final test check column.

Thank you!!