Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
MarcoARaymundo
Creator III
Creator III

Get Values "Concat()" between

Hi!

I have a list result of the expression:

Concat(Aggr(Avg({<PRICE={'>0'}, PRICECV={'>0'}>} PRICE), COD, STORE), ';', PRICE)

=>12,25;12,25;12,25;12,98;12,98;12,99;12,99;12,99;13,17;13,98

I need take values between 12,35 and 13,41

Any ideas

Tks

2 Replies
swuehl
MVP
MVP

Maybe like

Concat(Aggr( If( Avg({<PRICE={'>0'}, PRICECV={'>0'}>} PRICE) >=12.35 AND Avg({<PRICE={'>0'}, PRICECV={'>0'}>} PRICE) <=13.41, Avg({<PRICE={'>0'}, PRICECV={'>0'}>} PRICE) ) , COD, STORE), ';', PRICE)

MarcoARaymundo
Creator III
Creator III
Author

Tks, but did not work.

the values min and max, vary by product.