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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Need to find the MEETINGS LEFT number, please advise.
I had to filter INPROGRESS as below to get the count
‘Q’ & ‘R’ = IN PROGRESS
Same with Checked IN to get the count
I & F = CHECKED IN
Now I need the MEETINGS LEFT which is the subtraction between INPROGRESS & CHECKED IN…this makes me feel like I have to create a new measure for the MEETINGS left also for Today, I have a hearing date available to filter that. Can someone please advise on this?
Solved! Go to Solution.
Hi @sraj,
Ah you want to count the rows
In Progress = Calculate(countrows('table'), 'table'[queue_cat] in {"Q","R"})
Checked In = Calculate(countrows('table'), 'table'[queue_cat] in {"I","F"})
Meetings Left = [In Progress] - [Checked In]
Proud to be a Super User!
Hi @sraj
I would probably create three measures:
In Progress = Calculate(sum('table'[foo]), 'table'[queue_cat] in {"Q","R"})
Checked In = Calculate(sum('table'[foo]), 'table'[queue_cat] in {"I","F"})
Meetings Left = [In Progress] - [Checked In]
Proud to be a Super User!
@richbenmintz - may be I didnt ask the right question...the Q,I,R,F 'queue_cat' exists on this same column called 'queue_cat'. So all I have is one column not two different ones. I hope this makes sense, please advise.
Hi @sraj,
Ah you want to count the rows
In Progress = Calculate(countrows('table'), 'table'[queue_cat] in {"Q","R"})
Checked In = Calculate(countrows('table'), 'table'[queue_cat] in {"I","F"})
Meetings Left = [In Progress] - [Checked In]
Proud to be a Super User!
No Problem, happy to help
Proud to be a Super User!
Hi @sraj,
just a place holder, i do not know the actual column name you are trying to sum.
Proud to be a Super User!
@amitchandak I understand, need help to create a new measure as the Q, I, R, F all exists on the same column called queue_cat. I am new to this and never done it before, can you please help.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 112 | |
| 109 | |
| 40 | |
| 33 | |
| 27 |