Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Please I would like to develop a conditional column with the following rule: If Today Vs Due Day is equal or greater than 0, the result should be "On Time", but if Today Vs Due Day is less than 0 and the Code is #Q the result should be "Observed", and if Today Vs Due Day is less than 0 and the Code is blank or other value, the result should be "Delayed". Any help. Thank you.
Solved! Go to Solution.
Column = switch ( TRUE(), T[TVDD] >= 0, "On Time", T[TVDD] < 0 && T[Code] = "#Q", "Observed", "Delayed" )
Best
D.
Column = switch ( TRUE(), T[TVDD] >= 0, "On Time", T[TVDD] < 0 && T[Code] = "#Q", "Observed", "Delayed" )
Best
D.
User | Count |
---|---|
12 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
11 | |
7 |