Prezado Basole... segue... Grato.
Option Explicit
Private Pagina As String
Public Declare PtrSafe Function ShellExecute _
Lib "shell32.dll" _
Alias "ShellExecuteA" _
(ByVal hwnd As Long, _
ByVal lpOperation As String, ByVal lpFile As String, _
ByVal lparameters As String, ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long
Public Sub NewShell(cmdLine As String, lngWindowHndl As Long)
ShellExecute lngWindowHndl, "Open", cmdLine, "", "", 1
End Sub
Public Sub Abrir()
Dim Pesquisa As String
Dim Termos As String
Pesquisa = UserForm1.TextBox1
Termos = " ''gasolina'' ''diesel'' ''eletrico'' "
Let Pagina = ("https://www.google.com.br/search?q=") & Pesquisa & Termos
Call NewShell(Pagina, 1)
End Sub