Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a problem with the max (date) and grouping.
I only need the data with the highest date of occurrence "Part, Storagearea, Storagelocation, Storageplace".
Qlik wants me to include the quantity in the grouping. But then I have the same result as before.
NoConcatenate
TMP2:
Load
Part
, Storagearea
, Storagelocation
, Storageplace
, max(date(InventurDate)) as InventurDate
, Quantity
From [$(SCRIPT_PATH_PA_TRANSFORM)table.qvd](qvd)
Group by
Part
, Storagearea
, Storagelocation
, Storageplace
;
If I add the "InventurDate", it doesn't work either.
Can you help me please?
I have the solution. I have to add up the quantiy.
Like:
Sum(Quantity) as Quantity
I have the solution. I have to add up the quantiy.
Like:
Sum(Quantity) as Quantity