View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Toppers
 
Posts: n/a
Default finding "™‚" character in a worksheet

Look for chr(63) ......

With Worksheets(1).Range("a1:a500")
Set c = .Find(Chr(63), LookIn:=xlValues)
If Not c Is Nothing Then
firstAddress = c.Address
Do
MsgBox c.Address
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address < firstAddress
End If
End With

End Sub


HTH
"davids" wrote:

is there a function i could use to find all the "™‚" characters in a
worksheet? a standard search does not work as excel returns an error messages
saying it can't find the data we're searching for