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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

set question ?

Hi Folks I have table like this

   

MINValueMAXValueIdentifier
00.0120
0.0120.03471
0.03470.10962
0.10960.30343
0.30340.63014
0.63011.51155
1.51153.48736
3.487312.96167
12.96161018

t2:

   

valueMonthnames
0Jan-16
0.01Feb-16
0.05Mar-16
0.1Apr-16
0.1May-16
0.75Jun-16
0.2Jul-16
10Aug-16
10.5Sep-16
5.5Nov-16
50Dec-15
50.5Nov-15
3.7Oct-15
0.013Mar-15
0.01094Feb-15
1

Jan-15

in my chart dimension is month names and expression is

like

if (sum(value)>minvalue and sum(value)<maxvalue,,1,0)

here I don't have any association between the 2 tables

20 Replies
settu_periasamy
Master III
Master III

May be try like this..

if(value>=0 and value <=Min(maxvalue)  ,'a',

if(value>=Min(minvalue,2) and value <=Min(maxvalue,2)  ,'b',

if(value>=Min(minvalue,3) and value <=Min(maxvalue,3) ,'c',

if(value>=Min(minvalue,4) and value <=Min(maxvalue,4)  ,'d',

))))