If Formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Heres what Im trying to do. Lets say in cell a1 is Monday and in b1 is
Tuesday and in c3 I would like to say if a1 or b1 equals Moday OR Wednesday
yes if not no?
Any ideas? Thanks
 
=IF(OR(COUNTIF(A1:B1,{"Monday","Wednesday"})>0),"yes","no")

--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)
 
Some formula like:

=if(or(a1="monday", a1="wednesday", b1="monday", b1="wednesday"),"yes",
"no")

--
Best regards,
---
Yongjun CHEN
==================================
- - - - www.XLDataSoft.com - - - -
Free Tool & Training Material for Download
==================================
 
If I understante what you are lookin for the formula is

=IF(OR(OR((A1="MONDAY"),(A1="WEDNESDAY")),OR((B1="MONDAY"),(B1="WEDNESDAY"))),"YES"."NO)

Regards from Brazil
Marcelo

"Str8" escreveu:
 
This formula would satisfy your conditions:-

=IF(OR(OR(A1="Monday",A1="Wednesday"),OR(B1="Monday",B1="Wednesday")),"Yes","No")
 
Thanks for all the replies Ive give them a try.

bigwheel said:
This formula would satisfy your conditions:-

=IF(OR(OR(A1="Monday",A1="Wednesday"),OR(B1="Monday",B1="Wednesday")),"Yes","No")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

formula help 1
Help with formula 4
Calculating weeks 1
copy and paste the cell with formula ="1" 3
Excel Need Countifs Formula Help 0
Question on the formula 1
IF Formula Help 5
Shift Schedule Formula 1

Back
Top