Hi All,
I am trying to create a workflow based on a logic and I am stuck. There are three columns, Number 1, Number 2 and Operator. The Number 1 and Number 2 contains values which are numeric and the Operator contains operators(<,>,<=,>=). Based on the value of the operator in each row, I want to create a flag(new column) which will tell me if the operator for that row is placed correctly.
Example is listed below:
| Number 1 | Number 2 | Operator | Flag |
| 5 | 6 | < | T |
| 34 | 34 | < | F |
| 34 | 23 | > | T |
| 34 | 34 | <= | T |