Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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.
User | Count |
---|---|
121 | |
76 | |
63 | |
51 | |
50 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |