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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
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'))