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.
Hi All,
Looking for a simple way to retrive the selected values from a filter but ignore some pretetermind values
in my example i have a filter that contains a set of integers
these integers are the identifiers to a set of Data snap shots
Within the report the user will always select 1 snap shot to display, however by default the report always includes several snap shots that must be included. for example if a user wants to see snap shot 78 then they would select this in the filter.
however when using all selected function it will return snap shot 78,9999,0000,0001
these three snap shots contain data that is always included in the filter and cannot be removed.
i am trying to display a title across the top of the page that will tell the user what snap shot is selected
i can use all selected to get back the list above but not sure how to return onl the 78 and ignore 9999,0000,0001
Proud to be a Super User!
Solved! Go to Solution.
ALLSELECTED just returns a table object so you can wrap that in a FILTER
eg.
MyMeasure = CONCATENATEX(
FILTER(
ALLSELECTED( 'table'[Column1] ),
NOT( 'table'[Column1] IN {"0000","0001","9999"} )
) , [Column1], ",")
ALLSELECTED just returns a table object so you can wrap that in a FILTER
eg.
MyMeasure = CONCATENATEX(
FILTER(
ALLSELECTED( 'table'[Column1] ),
NOT( 'table'[Column1] IN {"0000","0001","9999"} )
) , [Column1], ",")
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.