Build url with double quotes

most

Board Regular
Joined
Feb 22, 2011
Messages
107
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

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
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,224,818
Messages
6,181,152
Members
453,021
Latest member
Justyna P

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