Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Selection in Line chart

I have a two fields named bibserial and saleno where

bibserial saleno

1 14

2 15

3 16

4 17

.... .......

38 52

Now i have created Avg Price and a Tasting graph in Line chart with dimension saleno and for Avg Price The expression is avg(if(Price>0,NETAMT/SOLDWT)) and for Tasting Point the expression is (Avg (If(Leaf>0,Leaf)) + avg (If(Liquor>0,Liquor)) +avg (If(Infusion>0,Infusion)))/3. Now I have a selection box with Saleno, Garden,Centre and Financial Year.When i choose a particular saleno with Particular Garden, centre and Financial Year the chart shows only in dot for that particular saleno but i want to see all the Avg Price and Tasting point starting from saleno 14 upto the selected saleno say if i select saleno 28 it will show in line chart from saleno 14 to saleno 28.

2 Replies
tresesco
MVP
MVP

Hi,

Create a variable, MaxSale=max(saleno). Now use calculated dimension as : IF (saleno>=14 and saleno<=$(MaxSale), saleno).

hope this would help you.

regards, tresesco

Not applicable
Author

It does not works