bamaisgreat
Well-known Member
- Joined
- Jan 23, 2012
- Messages
- 831
- Office Version
- 365
- Platform
- Windows
I was trying to create a Macro to have a box popup to find something on the worksheet. I have the code below but I think it needs adjusted.
It would be nice if the search was not case sensitive.
Also if not to difficult a way to "Find Next" also.
Code:
Sub find()
'
' find Macro
'
What = InputBox("word to search")
Sheets().Select
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
End Sub
Also if not to difficult a way to "Find Next" also.