Conditional

P

PAL

Can someone help with this formula, or perhaps come up with a simpler version?

=IF(E2="Startup","Yes",IF(E2="Enrollment Open","Yes",IF(E2="Enrollment
Closed","Yes",IF(E2="Treatment","Yes",IF(E2="Startup","Yes",IF(E2="On
Hold","Yes",IF(E2="Terminated,"Yes","")))))
 
M

Ms-Exl-Learner

=IF(OR(E2="Startup",E2="Enrollment Open",E2="Enrollment
Closed",E2="Treatment",E2="Startup",E2="On Hold",E2="Terminated"),"Yes","")

Remember to Click Yes, if this post helps!
 
D

Dave Peterson

Maybe...

=IF(OR(E2={"startup","enrollment open","enrollment closed",
"treatment","startup","on hold","terminated"}),"Yes","")
 
T

Teethless mama

Create a lookup list

A1: Startup
A2: Enrollment Open
A3: Enrollment Close
A4: Treatment
A5: On Hold
A6: Terminated


REPT("Yes",COUNTIF(A1:A6,E2))
 

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

Top