Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi,
I need help on a small requirement. I am relatively new to Power BI and need some help in DAX.
I have a table with Country & City column. Both are added in slicers
I need to calculate the total sales of the country based on the city selection. For ex: Even if London is selected, I need to calculate total sales of entire UK (London + Manchester + Birmingham).
Can someone please help on that. Thanks in advance.
Regards
Solved! Go to Solution.
Try
Sales in country =
VAR Countries =
VALUES ( 'Table'[Country] )
VAR SalesInCountries =
CALCULATE ( SUM ( 'Table'[Sales] ), REMOVEFILTERS ( 'Table'[City] ), Countries )
RETURN
SalesInCountries
Try
Sales in country =
VAR Countries =
VALUES ( 'Table'[Country] )
VAR SalesInCountries =
CALCULATE ( SUM ( 'Table'[Sales] ), REMOVEFILTERS ( 'Table'[City] ), Countries )
RETURN
SalesInCountries
Thanks a ton. It works now. I missed that remove filter and while I applied your solution, it worked well.
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.
User | Count |
---|---|
10 | |
6 | |
4 | |
3 | |
3 |
User | Count |
---|---|
13 | |
11 | |
8 | |
8 | |
8 |