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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Creating Date

Good Day All~

I just want to ask how can I come up with a date with my data as 'January 2011, January 2012, February 2011, and so on.

I want to get the Month name and Year of the dates I have mentioned.

Thanks in advance,

-Donna

4 Replies
Not applicable
Author

You can use

=MonthName(DateField)

it will give you like Jan 2011, Feb 2012 ....

khadeer
Specialist
Specialist

Hi,

Write

Monthname(field name)&' '&Year(field name) as Monthname&Year

sushil353
Master II
Master II

Please share your sample data

sivarajs
Specialist II
Specialist II

Set your monthnames in script as like

SET MonthNames='January;February;March;April;May;June;July;August;September;October;November;December';

Use expression as Month(datefield)&' '&Year(datefield)