• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Find and Repalce Dialog box

Ljm

New Member
Hello,
is there a way to make appear by default Find and Replace dialog box once an excel file opened? Do I need to create a vba macro for this? I want to avoid using Ctrl F shortcut.
 
Hi Ljm,

Here is the VB. You need to place in the Thisworkbook module.

Code:
Private Sub Workbook_Open()
Application.CommandBars.FindControl(ID:=1849).Execute
End Sub

Cheers,
BD
 
  • Like
Reactions: Ljm
Back
Top