"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

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

php - Find a regex to take part of Email -