tags:

views:

35

answers:

1

i am building a formula like this:

=if(a1="something" or a1="alex","returned","not found")

but i guess the syntax is wrong. what is the correct way to write this?

+4  A: 

=if(or(a1="something",a1="alex"),"returned","not found")

glowcoder