excel - Why is this nested IF statement not returning my intended values? -


i trying formula in excel. nested if statement not returning values i've intended. cell in statement can between 1.000 , 0.000. if value in cell equal 1 returns value of "1", if less 1 returning value of "3", when value 0. missing if statement?

=if(f5=1,"4",     if(1>f5>=0.9,"3",         if(0.9>f5>=0.75,"2",             if(0.75>f5>=0.55,"1",                 if(f5<0.5,"0"))))) 

to between range in excel done using and(logical1, [logical2], ...)

if(and(xxx>=yyy,xxx<=zzz)... 

so check

if(and(f5>=0.9,f5<1)... 

Comments

Popular posts from this blog

java - Oracle EBS .ClassNotFoundException: oracle.apps.fnd.formsClient.FormsLauncher.class ERROR -

c# - how to use buttonedit in devexpress gridcontrol -

nvd3.js - angularjs-nvd3-directives setting color in legend as well as in chart elements -