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 nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi experts,
I am trying to count how many meetings happens after 07:00:00PM, for that I am using the formula:
Late_Meeting = CALCULATE(COUNTX(Gilly_Meetings;[End Time])>time(19;0;0))
My End Time column format is like:
17:00:00
15:00:00
21:00:00
However the formula keep showing True as result. Any suggestions?
Solved! Go to Solution.
I used a custom column like this:
Late_Meeting = IF([Time]>time(19,0,0),1,0)
I used a custom column like this:
Late_Meeting = IF([Time]>time(19,0,0),1,0)
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 20 | |
| 20 | |
| 11 |
| User | Count |
|---|---|
| 62 | |
| 55 | |
| 46 | |
| 45 | |
| 35 |