Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hi,
I have a report with a slicer filter for Projects (single selection) which is controlling the title of the report (I have used a Card to show the title). The problem i have is when/if the user will Clear Selections from the filter - then the report will show information for all the projects but the title will show the name of the first project.
Is there a way to either remove the Clear Selections from the filter or to show in the title "All Projects" when the filter is showing all projects?
Thank you,
Ioana
Solved! Go to Solution.
Hi @Anonymous,
You can hide the clear selection option in the slicer by hiding the Header of the slicer. In order to show the slicer name, use the title option in the properties
In case you want to show "All Projects" when the selections are cleared, you can create a measure that use a DAX similar to the below one
Measure = IF(NOT(ISFILTERED(ProductSubcategory[EnglishProductSubcategoryName])),"ALL",ProductSubcategory[EnglishProductSubcategoryName])
The First option is a simple one and should be a go to option as well
Hi @Anonymous,
You can hide the clear selection option in the slicer by hiding the Header of the slicer. In order to show the slicer name, use the title option in the properties
In case you want to show "All Projects" when the selections are cleared, you can create a measure that use a DAX similar to the below one
Measure = IF(NOT(ISFILTERED(ProductSubcategory[EnglishProductSubcategoryName])),"ALL",ProductSubcategory[EnglishProductSubcategoryName])
The First option is a simple one and should be a go to option as well
This worked for me!
"You can hide the clear selection option in the slicer by hiding the Header of the slicer. In order to show the slicer name, use the title option in the properties".
Thanks!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
69 | |
66 | |
51 | |
32 |
User | Count |
---|---|
114 | |
99 | |
75 | |
65 | |
40 |