Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi everyone
I have a table suppose like this
Table
Column1 Column2
11 Closed
56 Open
82 Resolved
78 Unresolved
Now I want to make a clustered column chart. It should have two bars, one for both open and unresolved i.e. total 134 and another for closed and resolved i.e. total 93.
How can this be done?
Solved! Go to Solution.
Hi @mshashmi
I would suggest doing it with the following measure
Total = sum('table1'[Column1]) Open & Unresolved = CALCULATE([Total],'Table1'[Column2] = "Open" && 'Table1'[Column2] ="Unresolved") Closed & Resolved = CALCULATE([Total],'Table1'[Column2] = "Closed" && 'Table1'[Column2] ="Resolved")
And you can then use those two measures on your clustered column chart.
Just to correct it. In this case, we'll use the OR operator (||), not the AND operator (&&).
Hi @mshashmi
I would suggest doing it with the following measure
Total = sum('table1'[Column1]) Open & Unresolved = CALCULATE([Total],'Table1'[Column2] = "Open" && 'Table1'[Column2] ="Unresolved") Closed & Resolved = CALCULATE([Total],'Table1'[Column2] = "Closed" && 'Table1'[Column2] ="Resolved")
And you can then use those two measures on your clustered column chart.
Just to correct it. In this case, we'll use the OR operator (||), not the AND operator (&&).
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
55 | |
37 | |
34 |
User | Count |
---|---|
99 | |
56 | |
53 | |
44 | |
40 |