Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello all,
I'm quite stuck trying to figure this out. I have a table with information reated to a set of addresses and my goal is to:
• Pick a single address from a slicer
• Find the associated neigborhood
• Have that asssocaited neighborhood filter a table down to all other addresses in the neighborhood.
I have tried creating a measure and using the measure to filter a table, but it is throwing an error. Below is my attemp and what I whould like as an outcome. Thanks for any help the community can provide!
Attempt
Measure:
Filtered Table:
Choose address from Slicer:
Address | Neighborhood | Baths | Beds |
1015 Fashion | x | 2 | 4 |
1016 Fashion | x | 3 | 3 |
1111 Duke | y | 2 | 2 |
1112 Duke | z | 6 | 6 |
Final Result
Address | Neighborhood | Baths | Beds |
1015 Fashion | x | 2 | 4 |
1016 Fashion | x | 3 | 3 |
Thanks!
Hi @Froznsolid
To achieve your desired outcome in Power BI, you can use a combination of a slicer, measures, and a visual-level filter. Here's an example of how you can accomplish this:
Create a slicer visual for the "Address" column to allow selecting single adresss
Create a measure to determine the selected neighborhood based on the chosen address:
SelectedNeighborhood = VAR SelectedAddress = SELECTEDVALUE(Table[Address]) RETURN CALCULATE( MAX(Table[Neighborhood]), Table[Address] = SelectedAddress )
Now select the table visual and go to filter pane on the right side
Add the filter for the ‘neighborhood’ column.
In filter setting select ‘basic filtering’ and choose ‘is equal to’ as the operator
And in the value field enter [selectedNeighborhood]
By following steps, selecting address from the slicer will update the 'selectedNeighborhood' measure accordingly.
Thank you
Hope this will help.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
9 | |
8 | |
8 |
User | Count |
---|---|
14 | |
12 | |
11 | |
11 | |
8 |