Reputation: 59
Does anybody know how to search for the wildcard character "*" using the Range.Find method and make it search for the character rather than a wildcard?
Upvotes: 0
Views: 60
Reputation: 96753
Consider:
Sub SearchingforStars()
Cells.Find(What:="~*", After:=Cells(1)).Select
End Sub
Tilda is your friend!
Upvotes: 2