Sandman1985
New Member
- Joined
- Jun 22, 2022
- Messages
- 19
- Office Version
- 365
- Platform
- Windows
Hi All,
Hope you're all well, I've been trying to get a macro button to make an input box pop up which allows me to enter in a text string or number to find and select on a very large sheet of data.
I know I can use Ctrl+F, but some of the people who need to use this will have their minds blown with that kind of change. SO I want to just put a large button which prompts them to enter what they are looking for.
I have the Input Box working, but can't get the find and select working.
Dim FindS As String
Dim Found As Boolean
FindS = InputBox("Enter the job number/name you want to search")
If FindS = "" Then
Exit Sub
End If
my code after this to find doesn't work.
have tried searching and appending my code with other code but failed.
Any help greatly appreciated.
Cheers,
Sandman
Hope you're all well, I've been trying to get a macro button to make an input box pop up which allows me to enter in a text string or number to find and select on a very large sheet of data.
I know I can use Ctrl+F, but some of the people who need to use this will have their minds blown with that kind of change. SO I want to just put a large button which prompts them to enter what they are looking for.
I have the Input Box working, but can't get the find and select working.
Dim FindS As String
Dim Found As Boolean
FindS = InputBox("Enter the job number/name you want to search")
If FindS = "" Then
Exit Sub
End If
my code after this to find doesn't work.
have tried searching and appending my code with other code but failed.
Any help greatly appreciated.
Cheers,
Sandman