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
Hi Team,
I need yout help to get monthly cumulative count of Open Bugs by priority wise.
Here the problem is Bug is in Workitem type Column, Open is in State of the task column, Month is in Created date column and Priority is in Priority column.
Thanks in Advance.
Solved! Go to Solution.
Hi, @Anonymous
You need to put the create date as a slicer or use table visual to show results.
measure =
CALCULATE (
COUNTROWS ( 'table' ),
table[workitem] = "Bug",
table[state] = "Open",
MONTH ( table[create date] ) = MONTH ( SELECTEDVALUE ( table[create date] ) ),
table[priority] = "priority"
)
If it doesn’t solve your problem, please feel free to ask me.
Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Syndicate_Admin ,
Please provide sample data and explain the sample data.
Best regards,
Lionel Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
It is not clear enough.
Could you provide small sample data?
Proud to be a Super User!
Hi, @Anonymous
You need to put the create date as a slicer or use table visual to show results.
measure =
CALCULATE (
COUNTROWS ( 'table' ),
table[workitem] = "Bug",
table[state] = "Open",
MONTH ( table[create date] ) = MONTH ( SELECTEDVALUE ( table[create date] ) ),
table[priority] = "priority"
)
If it doesn’t solve your problem, please feel free to ask me.
Best Regards
Janey Guo
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!