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

View all the Fabric Data Days sessions on demand. View schedule

Reply
Anonymous
Not applicable

The default "All" of a dropdown have to be replaced with custom Text

Hi,

 

I have a slicer for shopping store. The default value "All" of that drop down need to be replaced with a custom text like
"Please select store". It is a multi selection dropdown not a single selection.

So, can we replace the default value with the custom text using DAX or is any other custom visual where we can change the custom text.

sirishaa_0-1651144386494.png

Can anyone please help on this. 

Regards, 
Sirisha.C

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi, 

Thanks for responding. It's a good idea. Actually I have tried with a card. But as I am using SSAS model grouping of the card is not possible. Is there anyway istaed of grouping.

Could you please help on this.

Regards,

Sirisha.C

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi @Anonymous ,

 

Currently, we cannot customize the default value of "ALL" to other values such as "Please select store" in Format.

I suggest you try to create a card visual by a measure which will return dynamic text result based on selection and group this card and segmenter to achieve your goal.

Here I create a sample.

RicoZhou_0-1651547127753.png

Measure:

Measure = 
VAR _countrow =
    COUNTROWS ( 'Shopping Store' )
VAR _Total =
    COUNTROWS ( ALL ( 'Shopping Store' ) )
RETURN
IF(
ISFILTERED('Shopping Store'[Shopping Store]),    
IF (
        _countrow = 1,
        SELECTEDVALUE('Shopping Store'[Shopping Store]),
       "Multiple Selections" 
    ),
"Please select store")

Create a card visual by this measur, turn off "Category label", set Text size and Font the same like your slicer. Then use Ctrl + left click to mulitiple select visuals and right click to use Group function.

RicoZhou_1-1651547252371.png

Result is as below.

Befault it will show "Please select store".

RicoZhou_2-1651547344818.png

One selection:

RicoZhou_3-1651547352302.png

Multiple selection:

RicoZhou_5-1651547400499.png

Your demand is a good idea, while it is not supported to implement in Power BI currently.
You can submit a new idea to improve the Power BI.
It is a place for customers provide feedback about Microsoft Office products . What’s more, if a feedback is high voted

 

Best Regards,
Rico Zhou

 

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,

If Select ALL is enabled how do we deal with it. Could you please help me with that too.

Regards,

Sirisha

Anonymous
Not applicable

Hi, 

Thanks for responding. It's a good idea. Actually I have tried with a card. But as I am using SSAS model grouping of the card is not possible. Is there anyway istaed of grouping.

Could you please help on this.

Regards,

Sirisha.C

Anonymous
Not applicable

Hi @Anonymous ,

 

I mean group visual function. Here I have a test by connect to SSAS by live connection mode. It works well.

RicoZhou_0-1651657563102.png

 

Best Regards,
Rico Zhou

 

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,

My data source is Analysis service and when I tried to group the card it's disabled and also

SELECTEDVALUE('Shopping Store'[Shopping Store])

SELECTEDVALUE function is not available in the anaysis service model.

If there is any other alternative of that function. Could you please help me on this. 
SO far your idea helped me a lot. Please help on that part.

 

Regards,

Sirisha.C

amitchandak
Super User
Super User

@Anonymous , I doubt there is an option for that

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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
Top Kudoed Authors