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! It's time to submit your entry. Live now!
I want to return all locations within the same city when a single location within that city is selected. I have the following tables/measures: [Sales], 'Locations'[Location] 'Locations'[City].
So if I select the Manhattan Location, since the location is in New York, the visual would show all locations and sales for the branches in New York City.
Hope this makes sense.
Thanks!
Solved! Go to Solution.
Hi,
I actually believe I was able to solve this. I created an calculated table based on the Locations table and named it MarketLocations, then created the following measure:
Market-City =
VAR _SelectedMarket =
CALCULATETABLE (
VALUES ( 'Locations'[City] ),
FILTER (
ALL ( 'Locations' ),
'Locations'[Location] IN VALUES ( 'MarketLocation'[Location] )
)
)
RETURN
CALCULATE (
[Sales],
FILTER ( 'Locations', 'Locations'[City] IN _SelectedMarket )
)
Hi,
I actually believe I was able to solve this. I created an calculated table based on the Locations table and named it MarketLocations, then created the following measure:
Market-City =
VAR _SelectedMarket =
CALCULATETABLE (
VALUES ( 'Locations'[City] ),
FILTER (
ALL ( 'Locations' ),
'Locations'[Location] IN VALUES ( 'MarketLocation'[Location] )
)
)
RETURN
CALCULATE (
[Sales],
FILTER ( 'Locations', 'Locations'[City] IN _SelectedMarket )
)
Could you describe more, please. Maybe you have some screenshots?
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 12 | |
| 11 | |
| 9 | |
| 8 | |
| 7 |