I am trying to find a char in a cell using :
Sub findReplace()
Dim sfind As String
Dim sreplace As String
Dim i As Integer
Dim d As Double
sfind = ActiveCell.Value
d = Application.WorksheetFunction.Find(Range(ActiveCel l.Address), ".")
sfind = Trim(Right(ActiveCell.Value, d))
sfind = InputBox("Search on ", , sfind)
End Sub
I keep getting runtime error 1004
unable to get the find property of the worksheetfunction class