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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I'm trying to create a grouped bar chart with two differnt Values but I only want to filter one value.
My data set is structure like this:
Region | Status |
NA | Delivered |
NA | In Process |
NA | Delivered |
CAN | Delivered |
APAC | In Process |
CAN | In Process |
APAC | Delivered |
APAC | Delivered |
APAC | Delivered |
Which I'm wanting a bar chart that shows the total per region grouped with the total status of Delivered. I can do this in Excel just not sure how to do this in PowerBI.
Solved! Go to Solution.
@Anonymous , create two measures like this and put them bar/clustered visual
count = count(Table[Status])
Delivered = calculate(count(Table[Status]),Table[Status]="Delivered")
@Anonymous , create two measures like this and put them bar/clustered visual
count = count(Table[Status])
Delivered = calculate(count(Table[Status]),Table[Status]="Delivered")