If i have a range, lets name it "Names" and i want to find if the name
George is in that range, what formula should I use?
TIA
sheila
Cutter - 13 Sep 2005 00:20 GMT
Use the COUNTIF() function.
=COUNTIF(Names,"George")
This will give you a count of the number of times George is there
Vasant Nanavati - 13 Sep 2005 01:34 GMT
Cutter, I think your PC clock may be wrong (or the time zone is incorrectly
set) ...

Signature
Vasant
> Use the COUNTIF() function.
>
> =COUNTIF(Names,"George")
>
> This will give you a count of the number of times George is there.
sheila - 13 Sep 2005 04:22 GMT
Kind of right, but if the name George does appear in the range, I want
that name (George) to appear in the cell that has the formula.
how do i do that?
TIA
sheila
>Cutter, I think your PC clock may be wrong (or the time zone is incorrectly
>set) ...
sheila - 13 Sep 2005 04:24 GMT
and i guess i should also add, IF the name George doesnt appear in the
range, then I would like something else searched and used (say
"Harry"),,does that make sense??
>Kind of right, but if the name George does appear in the range, I want
>that name (George) to appear in the cell that has the formula.
[quoted text clipped - 6 lines]
>>Cutter, I think your PC clock may be wrong (or the time zone is incorrectly
>>set) ...
Anne Troy - 13 Sep 2005 00:45 GMT
Hi, Sheila. You could try something like this:
=if(left(a1,6)="george",True,False)
************
Anne Troy
www.OfficeArticles.com
> If i have a range, lets name it "Names" and i want to find if the name
> George is in that range, what formula should I use?
>
> TIA
> sheila
Vasant Nanavati - 13 Sep 2005 01:04 GMT
I *think* Anne may have misread the question. Try this function:
Function IsGeorgeInThere() As Boolean
Dim c As Range
For Each c In Range("Names").Cells
If c = "George" Then
IsGeorgeInThere = True
Exit Function
End If
Next
End Function

Signature
Vasant
> If i have a range, lets name it "Names" and i want to find if the name
> George is in that range, what formula should I use?
>
> TIA
> sheila
Vasant Nanavati - 13 Sep 2005 01:08 GMT
Sorry, I just realized you wanted a formula. Try:
=COUNTIF(Names,"George")>0

Signature
Vasant
> If i have a range, lets name it "Names" and i want to find if the name
> George is in that range, what formula should I use?
>
> TIA
> sheila
Anne Troy - 13 Sep 2005 01:16 GMT
Well....but... I got PART of it right!! Hee hee...
************
Anne Troy
www.OfficeArticles.com
> Sorry, I just realized you wanted a formula. Try:
>
[quoted text clipped - 5 lines]
>> TIA
>> sheila
Vasant Nanavati - 13 Sep 2005 01:32 GMT
:-)
> Well....but... I got PART of it right!! Hee hee...
> ************
[quoted text clipped - 10 lines]
>>> TIA
>>> sheila