Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

How to show SELECT ALL in filter selection

Hi, I have the below code which will gives me the filter selection criteria when I select each of them but I would like to show "Select ALL" when I select all from the filter.

 

Filetr Values= 

VAR MaxFilters = 30
RETURN
IF (
ISFILTERED ( Sale[countryName] ),
VAR ___f = FILTERS ( Sale[countryName] )
VAR ___r = COUNTROWS ( ___f )
VAR ___t = TOPN ( MaxFilters, ___f, Sale[countryName] )
VAR ___d = CONCATENATEX ( ___t, Sale[countryName] , ", " , Sale[countryName],ASC)
VAR ___x = "Country = " & ___d
& IF(___r > MaxFilters, ", ... [" & ___r & " items selected]") & "; "
RETURN ___x & UNICHAR(13) & UNICHAR(10)
)

 

Please any suggestion would be appriciated.

 

Thank you,

  

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@Anonymous 

 

You may change it as follows.

    IF (
        ISEMPTY (
            EXCEPT ( ALL ( Sale[countryName] ), ALLSELECTED ( Sale[countryName] ) )
        ),
        "Select ALL",

 

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-chuncz-msft
Community Support
Community Support

@Anonymous 

 

You may change it as follows.

    IF (
        ISEMPTY (
            EXCEPT ( ALL ( Sale[countryName] ), ALLSELECTED ( Sale[countryName] ) )
        ),
        "Select ALL",

 

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

HI @Anonymous ,

 

Put your calculated field in the filter visual and change the setting from the format pane: Turn it On 

( screenshot below)

 

Capture1.PNG

 

Hope this helps you.

 

Thanks,

Tejaswi

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors