Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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="Start up","Yes",IF(E2="On Hold","Yes",IF(E2="Terminated,"Yes",""))))) |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=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! -------------------- (Ms-Exl-Learner) -------------------- "PAL" wrote: 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="Start up","Yes",IF(E2="On Hold","Yes",IF(E2="Terminated,"Yes",""))))) |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Maybe...
=IF(OR(E2={"startup","enrollment open","enrollment closed", "treatment","startup","on hold","terminated"}),"Yes","") PAL wrote: 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="Start up","Yes",IF(E2="On Hold","Yes",IF(E2="Terminated,"Yes",""))))) -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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)) "PAL" wrote: 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="Start up","Yes",IF(E2="On Hold","Yes",IF(E2="Terminated,"Yes",""))))) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
New Conditional Format Overriding Previous Conditional Format | Excel Discussion (Misc queries) | |||
Conditional Rank (or rather, Conditional Range) | Excel Worksheet Functions | |||
Conditional Formatting that will display conditional data | Excel Worksheet Functions |