Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
luisccmm
Creator
Creator

Firstsortedvalue filter set analysis

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?

1 Solution

Accepted Solutions
agigliotti
Partner - Champion
Partner - Champion

maybe this:

Aggr( firstsortedvalue(  {<  PRODUCT= {'1'}, YEARMONTH = {"<201712"} >} SALES, -INVOICE_DATE,2), ICC )

View solution in original post

2 Replies
agigliotti
Partner - Champion
Partner - Champion

maybe this:

Aggr( firstsortedvalue(  {<  PRODUCT= {'1'}, YEARMONTH = {"<201712"} >} SALES, -INVOICE_DATE,2), ICC )

luisccmm
Creator
Creator
Author

Thank you agigliotti, that was a perfect solution!!

Regards