Assign value to cell in For Each Row loop, after its already been assigned a value in the same loop
I have a For Each Row function working on a data table. It goes through a series of If statements evaluating values in some of the columns and then based on the findings it assigns a value to a :Correct_Process column. Currently I have it setup like this. For Each Row( dt, If( :Module == "M05" & :Measurement == "Conductivity", If(:Actual > m5_cond_hi | :Actual < m5_cond_low, :Correct_Pr...