Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
master_student
Creator III
Creator III

dynamic title

Hello Guys,

I would like to have a dynamic chart title that change with the year selected for example Recharge 2016 vs 2017

any idea please?

Thanks

4 Replies
sunny_talwar

May be this:

='Recharge ' & (Max(Year) - 1) &  ' vs ' & Max(Year)

sdmech81
Specialist
Specialist

HI you can write expression in chart title aswell..Try that

Else give me exactly what you want

sdmech81
Specialist
Specialist

Try this:

='Recharge ' & (Max(Year(Today())) - 1) & ' vs ' & Max(Year(Today()))

gowtham_patnaik
Contributor III
Contributor III

Try this:

try to store year in a variable.

='Recharge' & sum($(vYear)-1) &  ' vs ' & sum($(vYear))