Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
May be this:
='Recharge ' & (Max(Year) - 1) & ' vs ' & Max(Year)
HI you can write expression in chart title aswell..Try that
Else give me exactly what you want
Try this:
='Recharge ' & (Max(Year(Today())) - 1) & ' vs ' & Max(Year(Today()))
Try this:
try to store year in a variable.
='Recharge' & sum($(vYear)-1) & ' vs ' & sum($(vYear))