Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I've got a dynamic title which runs off a slicer which works fine as below.
How would I amend this to display something when no filter is selected as currently both options show together on the title?
I have it on single select so it's just when nothing is selected, not both.
Solved! Go to Solution.
Have you tried to do something similar to this?:
Growth =
var result=
"" &
CONCATENATEX (
'Measure','Measure'[Measure Name],
" ,")
& " Growth YoY %"
return if(selectedvalue[slicerField]="","My title",result)
Have you tried to do something similar to this?:
Growth =
var result=
"" &
CONCATENATEX (
'Measure','Measure'[Measure Name],
" ,")
& " Growth YoY %"
return if(selectedvalue[slicerField]="","My title",result)
User | Count |
---|---|
121 | |
69 | |
68 | |
57 | |
50 |
User | Count |
---|---|
176 | |
83 | |
69 | |
65 | |
54 |