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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
LD1
Helper III
Helper III

Dynamic titles with many filters

Hi, 

 

I would like to create a dynamic title with all these informations :

 

- Year = 2022

- Quarter = Quarter 2

- Month = January

 

I mean, if i have selected 2022 = title = "Turn over 2022"

& if i add Quarter 2 = title = "Turn over 2022 Quarter 2"

& if i add Month January = title = "Turn over 2022 January"

 

And if all is selected,  title is just "Turn over 2022" whatever you have chosen. 

 

Can you help me ? 

 

Thank you,

1 ACCEPTED SOLUTION
v-yanjiang-msft
Community Support
Community Support

Hi @LD1 ,

According to your description, here's my solution. Create a measure.

 

title =
"Turn Over" & SELECTEDVALUE ( 'Table'[Year] ) & " "
    & SELECTEDVALUE ( 'Table'[Quarter] ) & " "
    & SELECTEDVALUE ( 'Table'[Month] )

 

Turn on the visual Title option and select the fx button. 

vkalyjmsft_1-1660724240406.png

Select the measure in the fileld dialoge.

vkalyjmsft_2-1660724295904.png

Then get the result.

vkalyjmsft_3-1660724524666.png

 

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-yanjiang-msft
Community Support
Community Support

Hi @LD1 ,

According to your description, here's my solution. Create a measure.

 

title =
"Turn Over" & SELECTEDVALUE ( 'Table'[Year] ) & " "
    & SELECTEDVALUE ( 'Table'[Quarter] ) & " "
    & SELECTEDVALUE ( 'Table'[Month] )

 

Turn on the visual Title option and select the fx button. 

vkalyjmsft_1-1660724240406.png

Select the measure in the fileld dialoge.

vkalyjmsft_2-1660724295904.png

Then get the result.

vkalyjmsft_3-1660724524666.png

 

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@LD1 , You can use isfiltered to create that

 

year = if(isfiltered(Table[Year]) , "Turn Over " & selectedvalue(Table[Year]) , "All Years" )

 

Qtr = if(isfiltered(Table[Year]) , "Turn Over " & selectedvalue(Table[Year])  & " " & if(isfiltered(Table[Qtr]) , "Turn Over " & selectedvalue(Table[Qtr]), "" )  , ""   )

 

 

 

https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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