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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi All,
I have data like below -
India | UK | USA | |
Sports | 5% | 10% | 3% |
Education | 5% | 10% | 3% |
Health | 5% | 10% | 3% |
How do I ensure if country filter is selected, "India" is always shown.
Solved! Go to Solution.
Hi @raimon ,
Please create the following table.
Country = CALCULATETABLE ( DISTINCT ( 'Table'[Country] ), 'Table'[Country] <> "India" )
Then create measure:
Measure =
COUNTROWS (
INTERSECT (
VALUES ( 'Table'[Country] ),
UNION ( Country, {"India"} )
)
)
And filter Country column by Measure.
Result:
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@v-kkf-msft I am amazed by the solution. Thank you.
It feels so good to explore new things out there. Empowering to know what all is possible.
Hi @raimon ,
Please create the following table.
Country = CALCULATETABLE ( DISTINCT ( 'Table'[Country] ), 'Table'[Country] <> "India" )
Then create measure:
Measure =
COUNTROWS (
INTERSECT (
VALUES ( 'Table'[Country] ),
UNION ( Country, {"India"} )
)
)
And filter Country column by Measure.
Result:
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
this is impressed!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.