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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources 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

1 Solution

Accepted Solutions
tresesco
MVP
MVP

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
tresesco
MVP
MVP

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'))