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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
soha1902
Creator
Creator

How to group date??

Hi All,

I am reloading Date from my data but its not grouping Date automatically. Please help me to group this date by Year and Year-Month.

See image:

Date.png

I attached sample application.

Thanks.

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

try this:

Year(ACTUAL_SHIPMENT_DATE) as Year,

MonthName(ACTUAL_SHIPMENT_DATE) as Year_Month

View solution in original post

2 Replies
tresB
Champion III
Champion III

try this:

Year(ACTUAL_SHIPMENT_DATE) as Year,

MonthName(ACTUAL_SHIPMENT_DATE) as Year_Month

ashfaq_haseeb
Champion III
Champion III

try below

Load

Year(ACTUAL_SHIPMENT_DATE) as Year,

year(ACTUAL_SHIPMENT_DATE)&'-'&Month(ACTUAL_SHIPMENT_DATE) as Year_Month

FROM

[Data.QVD]

(qvd)

Regards

ASHFAQ