Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowHi,
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
24 | |
14 | |
13 | |
12 | |
7 |
User | Count |
---|---|
30 | |
21 | |
15 | |
14 | |
14 |