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
How to do I modify this on the this visual to add a user selectable status category , and calculating count based on selection
here StatusCount = CALCULATE(
COUNTA('DC8-TenantsNotLogedIn'[Status])
)
I want to :
1. remove the remove the status count col
2. move the Total count below the status count.
3. Add a user selctable filter option in the menu to choose a array of 'status'
4. Update the status count based on selection made.
Appreciate if you could also point to any documentation on the same .
Solved! Go to Solution.
Hi, @Anonymous ;
You could use ISINSCOPE(), as follows:
StatusCount = IF(ISINSCOPE('Table'[User]),MAX('Table'[Staus]),COUNT('Table'[Staus]))
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous ;
You could use ISINSCOPE(), as follows:
StatusCount = IF(ISINSCOPE('Table'[User]),MAX('Table'[Staus]),COUNT('Table'[Staus]))
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.