Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 193 | |
| 124 | |
| 101 | |
| 67 | |
| 49 |