Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME 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

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