Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Working with dates

Hi I have this table with date field in format M/D/YYYY and I want to show it like MMM-YY in QlikView, I want to create it from the script so I'm simply doing this date(SUBMIT_DT,'MMM-YY') which gets me the right format, the problem is, it doesn't group together in charts / list box... look at the picture, how can I solve it without converting it to text (so I can sort it correctly)

fechas.JPG

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hi oscar,

What do you mean by grouping?

is data duplicated?

Regards

Neetha

View solution in original post

8 Replies
maxgro
MVP
MVP

see attachment

Anonymous
Not applicable
Author

Hi oscar,

What do you mean by grouping?

is data duplicated?

Regards

Neetha

MK_QSL
MVP
MVP

Add below in your script


Date(MonthStart(Date#(SUBMIT_DT,'M/D/YYYY')),'MMM-YY') as Submitted


or


use below in your chart as a Calculated Dimension or you simply use to create a field in list box


Date(MonthStart(Date#(SUBMIT_DT,'M/D/YYYY')),'MMM-YY')

Anonymous
Not applicable
Author

SIngle values in chart axis and list box, normally you can have multiple records with same value, but here they will appear just once

jpapador
Partner - Specialist
Partner - Specialist

Use this on the date in the script:

Date(MonthStart(SUBMIT_DT), 'MMM-YY') as MonthYear,

Anonymous
Not applicable
Author

Thanks, works like a charm

Anonymous
Not applicable
Author

THanks you! I'd wish I could mark two answers as correct, I appreciate your help!

MarcoWedel

LOAD Date(MonthName(SUBMIT_DT),'MMM-YY') as Submitted

Resident yoursource;