Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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 |
---|---|
79 | |
73 | |
58 | |
36 | |
32 |
User | Count |
---|---|
90 | |
60 | |
60 | |
49 | |
45 |