Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Straight Table - Window Title Expression

Hi All,

i am using this expression in Window Title: = 'Projects Completed in ' & month(month(vtoday)-1) and the value i am getting is below:


Projects Completed in 8


vToday variable is giving todays date


expectation of the result is:


Projects Completed in August


please advise


thanks in advance

Sukhwant


13 Replies
Anonymous
Not applicable
Author

try

'Projects Completed in ' & date(addmpnths(vtoday,-1),'MMMM')

your variable is correct vtoday or vToday?

in your first  mail you mentioned vToday has todays date

chetansehgal
Creator
Creator

Try this:

='Text'  &  left(MonthName(addmonths(Today(),-1)),3)

tresesco
MVP
MVP

Try:

month(Addmonths(today(),-1))

Anonymous
Not applicable
Author

Hi,

use this expression.

='Projects Completed in ' & month(Addmonths(Today(),-1))

regards,

Venkata Sreekanth