Hi, is there any way to get a warning message to pop up if you are using the find function over a selected range rather than the entire sheet?
Hi, is there any way to get a warning message to pop up if you are using the find function over a selected range rather than the entire sheet?
Welcome to the forum, Jack.
No.
Entia non sunt multiplicanda sine necessitate
Ahh, thanks.
If you write code you can.
![]()
Sub MyFind() ' ' assign this routine to CTRL+f ' ' application.OnKey "^f" , "MyFind" ' If TypeOf Selection Is Range Then If Selection.Cells.Count > 1 Then MsgBox "About to use Find within range " & Selection.Address & " only" End If End If Application.CommandBars.FindControl(ID:=1849).Execute End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks