Is it possible to modify this code to peform a more gereral search...by first letter only.
Sub digitup()
Dim x As Variant
Set x = Cells.Find(What:=InputBox("Please enter your search criteria", "Search"), LookIn:=xlFormulas, LookAt:=xlPart)
If Not x Is Nothing Then
x.Activate
Else
MsgBox "Not found."
End If
End Sub
Thanks in advance!!!
Sub digitup()
Dim x As Variant
Set x = Cells.Find(What:=InputBox("Please enter your search criteria", "Search"), LookIn:=xlFormulas, LookAt:=xlPart)
If Not x Is Nothing Then
x.Activate
Else
MsgBox "Not found."
End If
End Sub
Thanks in advance!!!