Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

try this:

Year(ACTUAL_SHIPMENT_DATE) as Year,

MonthName(ACTUAL_SHIPMENT_DATE) as Year_Month

View solution in original post

2 Replies
tresesco
MVP
MVP

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