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

The 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.

Reply
lherbert501
Post Patron
Post Patron

Dynamic Title Nothing Selected

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.

 

Growth =
  "" &
  CONCATENATEX (
   'Measure','Measure'[Measure Name],
     
        " ,")
    & " Growth YoY %"
1 ACCEPTED SOLUTION
mlsx4
Memorable Member
Memorable Member

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)

 

View solution in original post

2 REPLIES 2
mlsx4
Memorable Member
Memorable Member

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)

 

Thanks @mlsx4 

Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.