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

Popular posts from this blog

android - getbluetoothservice() called with no bluetoothmanagercallback -

sql - ASP.NET SqlDataSource, like on SelectCommand -

ios - Undefined symbols for architecture armv7: "_OBJC_CLASS_$_SSZipArchive" -