Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
gerhardl
Creator II
Creator II

Expression in Title

Hi,

Can I put an expression in the Title of a chart?

I have a chart called "Performing Customers for the Month". I would like it to say "Performing Customers for April", with the month name being determined by the expression.

This is the expression I use to determine the number of performing customers, so I could use the variable to determine the "current" month (which is just the maximum month).

COUNT({1<[Effective Year]={$(=($(vCurrentYearPurchase)))},[Effective Month]={$(=($(vCurrentMonthNamePurchase)))},[Tran Code]*={35}>} [Effective Date])

Thanks,

G

1 Solution

Accepted Solutions
Not applicable

Hi

Use

='Performing customers for ' & Month($(vCurrentMonthPurchase))

Regards

Anders

View solution in original post

3 Replies
Not applicable

Hi

In Window title

Put in

=COUNT({1<[Effective Year]={$(=($(vCurrentYearPurchase)))},[Effective Month]={$(=($(vCurrentMonthNamePurchase)))},[Tran Code]*={35}>} [Effective Date])

Regards

Anders

gerhardl
Creator II
Creator II
Author

Hi Anders,

I am using =Month($(vCurrentMonthPurchase)) and that works fine, but it just gives me the monththen - April.

I would like the title to be "Performing customers for April", so it must be normal text, and then the expression value.

Possible?

Thanks,

G

Not applicable

Hi

Use

='Performing customers for ' & Month($(vCurrentMonthPurchase))

Regards

Anders