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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
prabhas277
Creator
Creator

date format

Hi experts,

i have one field called month in that i have some data .the data like jan-14,fed-14 ...dec-14 now in list the data is like 1/1/14,2/1/14 like that. now my requirement is that will apper in the list box like jan-14,feb-14 like how we can achive that?

Regards,

prabhas,

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try

LOAD

     MonthName(month) as month,

....

in your load script.

View solution in original post

5 Replies
Anonymous
Not applicable

Hi,

can you post sample data?

Is simplier to understand.

Thank you.

Regards.

swuehl
MVP
MVP

Try

LOAD

     MonthName(month) as month,

....

in your load script.

hari8088
Creator
Creator

can u give more explanation

settu_periasamy
Master III
Master III

Hi,

You mentioned already you have month field like Jan-14, Feb-14.

You can directly put that in your listbox, right?

if you have the date field, then in the listbox Expression give

like this

=Date([Your date field],'MMM-YY')

sunny_talwar

Try this in the script:

Date(Date#(Capitalize(Month), 'MMM-YY')) as Date,

MonthName(Date#(Capitalize(Month), 'MMM-YY')) as MonthYear