Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
So I have a data set that has the following columns:
Number, Status, Priority, Date Originated
Status can be "Working", "Pending", "Incorporated"
Priority can be "Yellow", "Orange", or "Red"
I want to create a Stacked Column Chart.
How can I create a stacked bar that has "Yellow, Orange, Red" with appropriate counts and a seperate bar next to it that only includes the count of entries with the status "Incorporated"?
Something like this:
Currently, right now this is what I have and I am having trouble.
Solved! Go to Solution.
Hi @powerbinoobster ,
As a workaround, you can create a seperate table as follows. I created by entering data.
Then create the following measure, which you can replace and modify it as needed.
Conditional Count =
VAR _incorporated =
CALCULATE (
COUNT ( 'Table'[ID] ),
FILTER ( ALLSELECTED ( 'Table' ), [Status] = "Incorporated" )
)
VAR _red =
CALCULATE (
COUNT ( 'Table'[ID] ),
FILTER ( ALLSELECTED ( 'Table' ), [Priority] = "Red" )
)
VAR _orange =
CALCULATE (
COUNT ( 'Table'[ID] ),
FILTER ( ALLSELECTED ( 'Table' ), [Priority] = "Orange" )
)
VAR _yellow =
CALCULATE (
COUNT ( 'Table'[ID] ),
FILTER ( ALLSELECTED ( 'Table' ), [Priority] = "Yellow" )
)
RETURN
SWITCH (
SELECTEDVALUE ( 'Table (2)'[Attribute] ),
"Status", _incorporated,
"Priority",
SWITCH (
SELECTEDVALUE ( 'Table (2)'[Value] ),
"Red", _red,
"Orange", _orange,
"Yellow", _yellow
)
)
Sample data:
Expected result:
You can download my attachment for more details.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @powerbinoobster ,
As a workaround, you can create a seperate table as follows. I created by entering data.
Then create the following measure, which you can replace and modify it as needed.
Conditional Count =
VAR _incorporated =
CALCULATE (
COUNT ( 'Table'[ID] ),
FILTER ( ALLSELECTED ( 'Table' ), [Status] = "Incorporated" )
)
VAR _red =
CALCULATE (
COUNT ( 'Table'[ID] ),
FILTER ( ALLSELECTED ( 'Table' ), [Priority] = "Red" )
)
VAR _orange =
CALCULATE (
COUNT ( 'Table'[ID] ),
FILTER ( ALLSELECTED ( 'Table' ), [Priority] = "Orange" )
)
VAR _yellow =
CALCULATE (
COUNT ( 'Table'[ID] ),
FILTER ( ALLSELECTED ( 'Table' ), [Priority] = "Yellow" )
)
RETURN
SWITCH (
SELECTEDVALUE ( 'Table (2)'[Attribute] ),
"Status", _incorporated,
"Priority",
SWITCH (
SELECTEDVALUE ( 'Table (2)'[Value] ),
"Red", _red,
"Orange", _orange,
"Yellow", _yellow
)
)
Sample data:
Expected result:
You can download my attachment for more details.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello, this works! But do you know why when selecting mutiple months, the visual does not refect those values? For example, when you selected January and February on the slicer, Januarys data gets applied to February's columns and both become identical.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
63 | |
53 | |
39 | |
25 |
User | Count |
---|---|
85 | |
57 | |
45 | |
43 | |
38 |