I have a table where some products were tested multiple times. I want to flag the last run by '1' in a new column.
Go to Solution
Here is one way to handle this......
If( Col Max( Row(), :SN ) == Row(),1,0)
View solution in original post
Thank you!!