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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I am trying to demonstate on a stacked column chart the Total number of smokers in comparison with of the total number of smokers, which had a smoking pathway completed. I have been able to filter either the Smoking Pathway =Y and Smoking Status = 1 independantly but when I apply both filters at the same time to the visual it filters down to the total number of smokers that had a smoking pathway completed.
Can you please advise how I can achieve this visual?
Solved! Go to Solution.
Hi @EVANSOL78 ,
It's hard to imagine what you are trying to achieve without seeing a sample data and a sample result. But let me give this a try.
You case use ALL so the value stays the same regardless of the relevent filter.
=
CALCULATE (
[Your Measure Here],
FILTER (
ALL ( 'Table'[Smoking Pathway], 'Table'[Smoking Status] ),
'Table'[Smoking Pathway] = "Y"
&& 'Table'[Smoking Status] = 1
)
)
Hi @EVANSOL78 ,
It's hard to imagine what you are trying to achieve without seeing a sample data and a sample result. But let me give this a try.
You case use ALL so the value stays the same regardless of the relevent filter.
=
CALCULATE (
[Your Measure Here],
FILTER (
ALL ( 'Table'[Smoking Pathway], 'Table'[Smoking Status] ),
'Table'[Smoking Pathway] = "Y"
&& 'Table'[Smoking Status] = 1
)
)
Hi,
If you want to show a field in a visual ignoring the filters (the filter context) that you have set for the visual you can use a measure.
As an example if you table looks like this:
You could create a measure that counts all rows (to get the number of smokers) and then tell it to ignore the filters:
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!