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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have two tables and oen is
and another is
I can select the distance using ZIP code and show the Zip Codes within the selected radious . My issues is I would like to see the data from second table based on Zip Code within that radius. The Second Table is using direct query and cannot use API function Is there a workaround for this using a DAX/PowerQuery
Solved! Go to Solution.
Hi @Tanyag ,
To better understand your scenario, I have some questions:
If there are no relationships between the two tables and the "Zip" slicer is based on 'Table1'[zip code], the "Maximum Distance (km)" is based on a What-if parameter, try to create a measure like below and set it as "is 1" when using it as a visual level filter.
Measure =
VAR SelectedZip =
SELECTEDVALUE ( 'Table1'[zip code] )
VAR SelectedRadious = [Maximum Distance (km)]
RETURN
IF (
MAX ( 'Table2'[zip] ) = SelectedZip
&& MAX ( 'Table2'[DistanceMI] ) <= SelectedRadious,
1
)
If this doesn't meet your requirements, please show me more details.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Tanyag ,
To better understand your scenario, I have some questions:
If there are no relationships between the two tables and the "Zip" slicer is based on 'Table1'[zip code], the "Maximum Distance (km)" is based on a What-if parameter, try to create a measure like below and set it as "is 1" when using it as a visual level filter.
Measure =
VAR SelectedZip =
SELECTEDVALUE ( 'Table1'[zip code] )
VAR SelectedRadious = [Maximum Distance (km)]
RETURN
IF (
MAX ( 'Table2'[zip] ) = SelectedZip
&& MAX ( 'Table2'[DistanceMI] ) <= SelectedRadious,
1
)
If this doesn't meet your requirements, please show me more details.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks Icey
(sorry for delayed response I was on a walk)
As Far as relationship goes the common key field is ZIP code
The Zip I used is global city data (Open Source) It eventually is working
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.