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

Announcements
April 13–15 - Dare to Unleash a New Professional You at Qlik Connect 2026: Register Now!
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
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'))