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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
jim_chan
Specialist
Specialist

how to change numeric month field to string month field

Hi guys,

i have a month field, with value (1 until 12), how do i convert that month field to string(Jan-Dec) in scripting?

Rgds,

Jim

1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

Hi Jim,

Try like,

Month(Date#(MonthField,'M')) as Month

View solution in original post

2 Replies
tamilarasu
Champion
Champion

Hi Jim,

Try like,

Month(Date#(MonthField,'M')) as Month

antoniotiman
Master III
Master III

You can use

Month(MakeDate(Year(Today()),Month,'01'))  as Month

Month is DUAL field (Text and Number).