Build url with double quotes

most

Board Regular
Joined
Feb 22, 2011
Messages
106
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
  2. Mobile
I'm running crazy on this, why doesn't example two work?
VBA Code:
 Dim oShell As Object
 Set oShell = CreateObject("Wscript.Shell")
 oShell.Run ("https://www.google.com/search?q=yeah")

VBA Code:
 Dim oShell As Object
 stringit = "yeah"
 Set oShell = CreateObject("Wscript.Shell")
 oShell.Run "(" & Chr(34) & "https://www.google.com/search?q=" & stringit & Chr(34) & ")"
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Try:
VBA Code:
 oShell.Run (Chr(34) & "https://www.google.com/search?q=" & stringit & Chr(34))
 
Upvote 0
Even this would probably suffice.

VBA Code:
 oShell.Run "https://www.google.com/search?q=" & stringit
 
Upvote 0
Ahh, so simple! So annoying when you just over complicate it.
Both works of course. THANKS!
 
Upvote 0

Forum statistics

Threads
1,216,759
Messages
6,132,548
Members
449,735
Latest member
Gary_M

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top