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! It's time to submit your entry. Live 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 |
|---|---|
| 51 | |
| 38 | |
| 33 | |
| 22 | |
| 19 |
| User | Count |
|---|---|
| 136 | |
| 101 | |
| 58 | |
| 36 | |
| 35 |