Thanks, this worked!
But now, I'm wondering if I can add another IF in the same cell. I only
want the first formula to run if the value in another cell equals something.
For instance, if B16<>OFF, then run =IF(ISNA(VLOOKUP(A1,C3:C14,1,0)),A1,"").
Or if it does equal OFF, then a blank cell overrides the formula you provided.
Clear as mud?
> Assuming A1 contains the name you are looking for put this formula in C18
>
[quoted text clipped - 13 lines]
> >
> > Help?
Tyro - 03 Feb 2008 19:18 GMT
=IF(B16<>"OFF",IF(ISNA(VLOOKUP(A1,C3:C14,1,0)),A1,""),"")
Tyro
> Thanks, this worked!
>
[quoted text clipped - 27 lines]
>> >
>> > Help?
David Biddulph - 03 Feb 2008 19:40 GMT
=IF(B16="OFF","",IF(ISNA(VLOOKUP(A1,C3:C14,1,0)),A1,""))

Signature
David Biddulph
> Thanks, this worked!
>
[quoted text clipped - 27 lines]
>> >
>> > Help?
T. Valko - 03 Feb 2008 22:36 GMT
Another one:
=IF(B16="OFF","",IF(COUNTIF(C3:C14,A1),"",A1))

Signature
Biff
Microsoft Excel MVP
> Thanks, this worked!
>
[quoted text clipped - 27 lines]
>> >
>> > Help?