Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi everybody,
I've a question about calculation with 'earliest' times:
- The first time they check in on a day is the time they start working: this has to be at latest 8:00h
- I've put 'earliest' of time_from_actual in as value, but now I want to check if this value is later than 08:00h: how do I do this?
END TIME:
- The latest time they check out on a day is the time they stop working: this has to be at 17:00h or after
- I've put 'latest' of time_to_actual in as value, but now I want to check if this value is before 17:00h: how do I do this?
Also an important note: I'm working in DirectQuery mode
Is there anyone who nows how to do this? Thanks in advance for the reply
Solved! Go to Solution.
Hi @DanielB_NL ,
Please try these measures.
Measure = IF(MIN('Table'[time_from_actual]) < TIME(8,0,0), 1, 0)
Measure 2 = IF(MAX('Table'[time_from_actual]) < TIME(17,0,0), 1, 0)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @DanielB_NL ,
Please try these measures.
Measure = IF(MIN('Table'[time_from_actual]) < TIME(8,0,0), 1, 0)
Measure 2 = IF(MAX('Table'[time_from_actual]) < TIME(17,0,0), 1, 0)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
87 | |
84 | |
73 | |
49 |
User | Count |
---|---|
143 | |
131 | |
110 | |
64 | |
55 |