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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Kudoed Authors