Hi Expert,
How can I add a new column (D) that able to add count row IF "CompareSeqVsAlarmDP" is 1 in sequence using JSL?
I can reproduce this condition in Excel using IF statement : IF((C27=0),0,(C27+D26)).
But still unsuccessful to convert the IF condition in JMP.
I think something wrong with my IF statement. My JSL statement is as below:
dt1:New Column << Set Formula(If(:"CompareSeqVsAlarmDP=z"n == ., 0, :"CompareSeqVsAlarmDP=z"n + (:New Column - 1)))
thank you in advance!