The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All,
I have a requirement like replacing the "All" with a custom text.
For example a I have a Shopping Store multi selection drop down. The default value "All" have to be replaced with a custom text "Please select store". Can any one help me with the DAX for masking the slicer with a card so that it displays
1. custom text when nothing is selected
2. "Multiple Selections" when more than one store is selected.
3. Displays the selected value when a single store is selected. ,
The data source i am using for the report is a analysis service. Please help on this.
If there is any custom visual which achieves the same.
Regards,
Power Bi User.
Solved! Go to Solution.
Hi @Anonymous ,
Base on my research, there is no settings to customize the text when no option selected on the slicer.
Please try the method(see attachment) and check if it can be used as an workaround.
1. Create a measure as below
Measure = IF ( NOT ( ISFILTERED ( 'Table'[Weeks-2] ) ), "Please select store", "" )
2. Create a card visual and put the measure onto it
Best Regards
Hi @Anonymous ,
Base on my research, there is no settings to customize the text when no option selected on the slicer.
Please try the method(see attachment) and check if it can be used as an workaround.
1. Create a measure as below
Measure = IF ( NOT ( ISFILTERED ( 'Table'[Weeks-2] ) ), "Please select store", "" )
2. Create a card visual and put the measure onto it
Best Regards
None of this is even remotely possible. You may need to write your own custom visual, but even then that is still a stretch.
User | Count |
---|---|
10 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
22 | |
14 | |
14 | |
9 | |
7 |