Hi All,
Is there and option for adding logic to a transform calculation, for example i have a table
| Time | A | B | Logic |
+---------+---+-------+-----------------------------+
| Sample1 | 1 | 0.25 | IF (A==1) AND (B > 0.5) |
| Sample2 | 1 | 0.35 | IF (A==1) AND (B > 0.5) |
| Sample3 | 2 | 35.50 | IF (A==1) AND (B > 0.5) |
| Sample4 | 1 | 20.00 | IF (A==1) AND (B > 0.5) |
| Sample5 | 2 | 11.00 | IF (A==1) AND (B > 0.5) |
+---------+---+-------+-----------------------------+```
the column logic should be the result of the logic.
Thanks