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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
emp166
Contributor
Contributor

Full month not showing up

I am trying to have output of an expression (=MonthName(AddMonths(Today(),2))) be the month name but the output is Jun 2023. can someone please help me identify an alternate expression that will give the full month name? 

Labels (2)
2 Replies
sandeep-singh
Creator II
Creator II

Try this

Date(MonthName(AddMonths(Today(),2)),'MMMM')

if you want to add years, then use this

Date(MonthName(AddMonths(Today(),2)),'MMMM YYYY')

Rams-
Creator
Creator

Hi,

If you want only June you can try this:

Date(MonthName(AddMonths(Today(),2)),'MMMM')

 

If you want June 2023, you can try:

Date(MonthName(AddMonths(Today(),2)),'MMMM YYYY')

 

If you want June 23, you can try:

Date(MonthName(AddMonths(Today(),2)),'MMMM YY')

 

Hope this helps,

help user find answers ! don't forget to mark  a solution that work for you and click the like button!