The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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")
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
80 | |
71 | |
51 | |
50 |
User | Count |
---|---|
123 | |
119 | |
76 | |
64 | |
60 |