Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Peek orders from the last Year

Hi,

I'm trying to peek orders from the last year but it doesn't work.

LOAD

     [Order ID],

  Max(Year([Order Date])) As MaxOrderYearByOrder

FROM [..\Qvd\FactOrders_6_Import.Qvd] (qvd)

Group By [Order ID];

Someone can explain me why ?

*It must be in the ETL process

Thank.

2 Replies
Anonymous
Not applicable
Author

Above code gives you most recent order of evrey order id.

If you are pointing to last year then it has to be in where year(OrderDate)=(Year(today())-1)

Not applicable
Author

Hi Velagapudi,

This is not what I mean.

Thx.