Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
PraveenkarthikK
Frequent Visitor

Need help on DAX to calculate based on related slicer selection.

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

 

PraveenkarthikK_0-1674750988620.png

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

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Try

Sales in country =
VAR Countries =
    VALUES ( 'Table'[Country] )
VAR SalesInCountries =
    CALCULATE ( SUM ( 'Table'[Sales] ), REMOVEFILTERS ( 'Table'[City] ), Countries )
RETURN
    SalesInCountries

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

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.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.