Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. 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.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 40 | |
| 30 | |
| 24 |