Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi,
I am trying to use an IF statement to calculate if someone was on time for an appointment. 15 mins either side of appointment
time is considered as on time, anything else is late.
If appointment is at 17:00 then anything between 16:45 - 17:15 is ontime.
Trying this -> Late = IF(OTIF[TimeFrom] > OTIF[DutyTimeFrom] * 1.25,"Late",IF(OTIF[TimeFrom] < OTIF[DutyTimeFrom] * .75,"Late","OnTime") ). Not getting any errors but results are incorrect.
I am using this statement when adding a new column in Report view.
Solved! Go to Solution.
Try this...
Late = IF (OTIF[DutyTimeFrom]<OTIF[TimeFrom]-1/24*.25,"Early",IF (OTIF[DutyTimeFrom]>OTIF[TimeFrom]+1/24*.25,"Late","On Time"))
Try this...
Late = IF (OTIF[DutyTimeFrom]<OTIF[TimeFrom]-1/24*.25,"Early",IF (OTIF[DutyTimeFrom]>OTIF[TimeFrom]+1/24*.25,"Late","On Time"))
Works perfectly. Thank you very much.
User | Count |
---|---|
113 | |
94 | |
87 | |
75 | |
65 |
User | Count |
---|---|
138 | |
112 | |
110 | |
98 | |
94 |