- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to add final test check column.
Created:
Apr 2, 2024 03:55 PM
| Last Modified: Apr 2, 2024 1:07 PM
(827 views)
| Posted in reply to message from ConfidenceOwl94 04-02-2024
Here is one way to handle this......
If( Col Max( Row(), :SN ) == Row(),1,0)
Jim
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to add final test check column.
Created:
Apr 2, 2024 03:55 PM
| Last Modified: Apr 2, 2024 1:07 PM
(828 views)
| Posted in reply to message from ConfidenceOwl94 04-02-2024
Here is one way to handle this......
If( Col Max( Row(), :SN ) == Row(),1,0)
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to add final test check column.
Thank you!!