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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
suvechha_b
Creator III
Creator III

How to write in expression

How to write it in expresssion :

if(=$(vCalc) > 1.3 , 'High',

if(=$(vCalc) > 0.50 , 'Normal','Low'))

Note :

vCalc is a variable used for claculation

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

try this:

if($(=vCalc) > 1.3 , 'High',if($(=vCalc) > 0.50 , 'Normal','Low'))

Or,

if(vCalc > 1.3 , 'High',if(vCalc > 0.50 , 'Normal','Low'))

View solution in original post

1 Reply
tresB
Champion III
Champion III

try this:

if($(=vCalc) > 1.3 , 'High',if($(=vCalc) > 0.50 , 'Normal','Low'))

Or,

if(vCalc > 1.3 , 'High',if(vCalc > 0.50 , 'Normal','Low'))