Can an If statement have an |
I have the statement:
If( ((col != Column( "ASSAY_PURITY" )) | col != Column( "Total Sum" )),
If( (col[theRow] > target & !Is Missing( col[theRow] )),
result = "Fail"
)
);
col is a variable tracking the column name. I am checking to see if the column name is not equal to either Assay Purity or Total Sum. If true then it will check against a limit and it is greater than the limit than the...