Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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'))
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'))