if statement - IF function; struggling with format of 3 times greater section -
excel 2002: write if function cell j8 assigns text "ok" if value in cell l9 3 times greater value in cell m6; otherwise, have if function assign text "not ok" cell j8. be: =if(l9*3>m6, "ok", "not ok")
that be
=if(l9>=m6*3,"ok", "not ok")
further examples:
a b c formula ------------------------------------------------- 1 2 no ok if(b2 >= a2*3,"ok", "not ok") 2 6 ok if(b3 >= a3*3,"ok", "not ok") 3 8 no ok if(b4 >= a4*3,"ok", "not ok")
Comments
Post a Comment