Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am trying to create a filter on a price range in purchaseprices.
So for example show only purchaseprices between 5,00 and 10,00.
Does anyone have a solution for this?
May be you can use Advanced Search. Check in google related "Qlikview Types in Search"
>=500 <=1000
If it is in list box, Try this?
If(purchaseprices >= 500 and purchaseprices <= 100, purchaseprices)
Create a Slider object
>> Field = Price
Mode= Multi Value
&
Value Mode = Continuous/Numeric
Check the attached sample
Thanks for your solutions. The slider is a nice one to remember.
No i solved it by adding
IF(PurchaPrice< 0.51, '0,00-0,50',
IF(PurchaPrice>=0.51 AND PurchaPrice<1.01, '0,51-1,00',
IF(PurchaPrice>=1.01 AND PurchaPrice<2.01, '1,01-2,00',
IF(PurchaPrice >=2.01 AND PurchaPrice<3.01, '2,01-3,00',))))
As PurchasePriceBetween
to my script and created a listbox to filter on it.