Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
jonbmorrison
Contributor III
Contributor III

Displaying month in long text

In a chart title I have been able to display the max date of data loaded

for example 7/31/2019

I have also been able to display Jul 2019 and Jul.

I want July - the full month name.   (so when September rolls around the title would show September not Sep)

variations of the following in my title expression

Month(MonthName(max([MonthEnd Date])))  - gives me Jul

MonthName(max([MonthEnd Date])) - give Jul 2019

and max([MonthEnd Date])  returns 7/31/2019.

I've tried some others without success - any thoughts welcomed.

 

Labels (3)
1 Solution

Accepted Solutions
sunny_talwar

May be try this

Date(MonthName(Max([MonthEnd Date])), 'MMMM') will display July

Date(MonthName(Max([MonthEnd Date])), 'MMMM YYYY') will display July 2019

View solution in original post

1 Reply
sunny_talwar

May be try this

Date(MonthName(Max([MonthEnd Date])), 'MMMM') will display July

Date(MonthName(Max([MonthEnd Date])), 'MMMM YYYY') will display July 2019