Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need to calculate last purchase by client from product 1, made before 201712 (YYYYMM)
Sum all that (above) and divided by distinct client, in order to get the AVG expense by client.
I tried using firstsortedvalue, but I didn´t figure it out how to put those filters in firstsortedvalue function.
Aggr( firstsortedvalue( SALES, -INVOICE_DATE,2), ICC)
I have that formula above, but how I tell to this formula to:
- only look in transactions before 201712. Variable name is YEARMONTH
- only in transactions from product 1. Variable name is PRODUCT
Any help for set analysis approach in QlikSense?
maybe this:
Aggr( firstsortedvalue( {< PRODUCT= {'1'}, YEARMONTH = {"<201712"} >} SALES, -INVOICE_DATE,2), ICC )
maybe this:
Aggr( firstsortedvalue( {< PRODUCT= {'1'}, YEARMONTH = {"<201712"} >} SALES, -INVOICE_DATE,2), ICC )
Thank you agigliotti, that was a perfect solution!!
Regards