Excel Macro code to VBA Code to Search on Google

How to VBA Code to Search on Google in excel sheet through VBA Macro Code

To use VBA macro code in an Excel spreadsheet, you need to do the following:

  1. Open the Excel spreadsheet where you want to use the macro code.

  2. Press “Alt + F11” to open the VBA developer window.

  3. In the VBA developer window, click the “Insert” menu and select “Module” to create a new module.

  4. Paste the VBA macro code into the module window.

  5. To run the macro, click the “Run” button in the VBA developer window or press “F5” on your keyboard.

Alternatively, you can also create a button or a shortcut key to run the macro. To create a button, go to the “Developer” tab in the main Excel window and click the “Insert” button. Then select a button control and draw it on the worksheet. Right-click the button and select “Assign Macro” to assign the macro code to the button. To create a shortcut key, go to the “Macros” tab in the VBA developer window, select the macro from the list, and click the “Options” button. Then, enter a shortcut key in the “Shortcut key” field.

Note: If you are running the macro for the first time, you may need to enable macros in Excel by going to the “File” tab and selecting “Options.” Under the “Trust Center” settings, click the “Trust Center Settings” button and go to the “Macro Settings” tab. Select “Enable all macros” and click “OK.”

Copy Below VBA Macro Code for VBA Code to Search on Google
Sub SearchWindow32()
Dim chromePath As String
Dim search_string As String
Dim query As String
query = InputBox("Enter here your search here", "Google Search")
search_string = query
search_string = Replace(search_string, " ", "+")
'Uncomment the following line for Windows 64 versions and comment out Windows 32 versions'
'chromePath = "C:Program FilesGoogleChromeApplicationchrome.exe"
'Uncomment the following line for Windows 32 versions and comment out Windows 64 versions
'chromePath = "C:Program Files (x86)GoogleChromeApplicationchrome.exe"
Shell (chromePath & " -url http://google.com/#q=" & search_string)
End Sub

Follow this post to learn how to use this VBA code to search on Google.

below code also takes the shell command out, and will open your default browser with the value you entered in your search string.

Sub GoogleSearch()

Dim MyURL As String
Dim search_string As String
Dim query As String

query = InputBox(“Enter here your search here”, “Google Search”)
search_string = query
search_string = Replace(search_string, ” “, “+”)
MyURL = “https:/google.com/#q=”

ActiveWorkbook.FollowHyperlink Address:=MyURL & search_string
End Sub

How to Search on Google using a VBA Code

Now, close VB editor and run this macro from macros option in developer tab.

How it works

When you run this code it shows you an input box to enter your query. And you need to enter your query in that input box and click OK.

Once you click OK, this code creates a search URL syntax using the text you have entered.

And, in the end redirects Chrome to that URL to give you result for query you have entered.

RECENTLY UPLOADED EXCEL TEMPLATES

Work Order Invoice Format

Work Order Invoice

Work Order Invoice Template: Efficient and Detailed Billing for Specific Tasks In businesses where tasks are clearly defined and structured, …

Download Now
Work Contract Service Invoice Template

Work Contract Service Invoice

Work Contract Service Invoice Template: Ensuring Transparency in Contractual Billing In the realm of contractual services, clear communication, and precise …

Download Now
US Customs Invoice

US Customs Invoice

US Customs Invoice Template: A Key to Unlocking Smooth International Transactions Engaging in international trade demands meticulous adherence to various …

Download Now
UK VAT Invoice Template

UK VAT Invoice Template

UK VAT Invoice Template: The Gold Standard for Value-Added Tax Billing Navigating the maze of tax regulations can be complex, …

Download Now
Tree Trimming Invoice Format

Tree Trimming Invoice

Tree Trimming Invoice Format: Detailed Billing for Tree Care Projects Tree trimming and care is an art that requires precision, …

Download Now
Task Order Billing Format

Task Order Billing Format

Task Order Billing Format Template: Your Key to Efficient Milestone-Based Invoicing In a landscape where project dynamics shift and evolve, …

Download Now