"If", "and" excel statement -
i need create , if/and statement in excel if a1 contains word (eg "cd*), , b1>c1, value of 1 returned.
the catch need same criteria applied d1 , e1>f1 , 2 values added together.
hence if these criteria pan out final value returned 2.
hope makes sense.
the logical operations represented formulae:
and( condition1 , condition2 , ... ) or( condition1 , condition2 , ... ) not( condition ) each condition can pretty logical evaluation, meaning can nest logical operations nesting formulae required.
so in case need:
=if( and( a1='cd', b1>c1 ), "ok", "not ok")
Comments
Post a Comment