Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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:
I attached sample application.
Thanks.
try this:
Year(ACTUAL_SHIPMENT_DATE) as Year,
MonthName(ACTUAL_SHIPMENT_DATE) as Year_Month
try this:
Year(ACTUAL_SHIPMENT_DATE) as Year,
MonthName(ACTUAL_SHIPMENT_DATE) as Year_Month
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