This checks all sheets column B. If you only want to check one or two
sheets it will be more complicated because you will need to add code
with the sheet names.
'==================================
Sub FindCount()
Dim ToFind As Variant
Dim Counter As Long
Dim FoundCell As Object
ToFind = InputBox("Find what ?")
If ToFind = "" Then End
'-------------------------------
For Each WS In Worksheets
With WS.Columns(2).Cells
Set FoundCell = .Find(ToFind, LookIn:=xlValues)
If Not FoundCell Is Nothing Then
firstAddress = FoundCell.Address
Do
Counter = Counter + 1
Set FoundCell = .FindNext(FoundCell)
Loop While Not FoundCell Is Nothing And
FoundCell.Address <> firstAddress
End If
End With
Next
MsgBox (Counter)
End Sub
'==============================================
Regards
BrianB
===========================================