Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.