I'm trying to run the Find-dialogue upon Workbook open and I'm using this code. The problem is it performs the search only within whatever the active cell is, yet I want it to search forward (i.e., look for the next occurrence).
Can someone tell me how to do it?
Private Sub Workbook_Open()
'
' Macro2 Macro
'
Sheets("Memory").Select
Application.Dialogs(xlDialogFormulaFind).Show "", 2
End Sub
(I also want it to search for values and not formulas)
Can someone tell me how to do it?
Private Sub Workbook_Open()
'
' Macro2 Macro
'
Sheets("Memory").Select
Application.Dialogs(xlDialogFormulaFind).Show "", 2
End Sub
(I also want it to search for values and not formulas)