Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi.
I have a table with flights, source and destination cities.
In slicer, I have a list of cities.
I need a visual table to list all entries where selected city is either a source or a destination.
If my understanding is right, I cannot do a relationship model but I need to filter the visual based on some DAX logic, right? What would the syntax be? Or is there some easier solution?
Thank you
Solved! Go to Solution.
Hi, @marama
You can create a measure to filter table visual:
Try measure as below:
filter =
VAR a =
IF (
SELECTEDVALUE ( 'Table'[destination] )
IN VALUES ( City[city] )
|| SELECTEDVALUE ( 'Table'[source] ) IN VALUES ( City[city] ),
1,
0
)
RETURN
IF ( ISFILTERED ( City[city] ), a, a )
Then apply it to visual filter pane.
Please let me know if I misunderstood.
Best Regards,
Community Support Team _ Eason
@marama , Youcan join city with both source and destination, one join will inactive that you can activate using userelationship
then measure like below, assume source join is active
count(Table[source ]) + calculate(count(Table[destination]), userelationship (city[city],Table[destination]) )
Thank you, but join turned out to be too slow in my case (I have more then 100K records)
Hi, @marama
You can create a measure to filter table visual:
Try measure as below:
filter =
VAR a =
IF (
SELECTEDVALUE ( 'Table'[destination] )
IN VALUES ( City[city] )
|| SELECTEDVALUE ( 'Table'[source] ) IN VALUES ( City[city] ),
1,
0
)
RETURN
IF ( ISFILTERED ( City[city] ), a, a )
Then apply it to visual filter pane.
Please let me know if I misunderstood.
Best Regards,
Community Support Team _ Eason
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
71 | |
70 | |
43 | |
31 | |
26 |
User | Count |
---|---|
89 | |
49 | |
44 | |
38 | |
37 |