VBA auto opening chrome website with text change

hissonrr

Board Regular
Joined
Feb 6, 2016
Messages
106
Morning all,

Wanted to play a little prank on a co-worker and was trying to write a macro that if a specific cell changed text it would run and then AutoOpen a chrome website

right now I have my sheet script set to...


VBA Code:
Sub PRANK()
    If Target.Address = "G19" Then
        Call PRANKJOHN
    End If
End Sub

then the "PRANKJOHN" macro set to...

VBA Code:
Sub PRANKJOHN()

If InStr(1, (Worksheets("Pre Well Checklist").Range("G19").value), "John") > 0 Then
 
Call PrankJohnLink

End If

End Sub

Sub PrankJohnLink()

Dim chromePath As String
 
chromePath = """C:\Program Files (x86)\Google\Chrome\Application\chrome.exe"""

Shell (chromePath & " -url https://www.youtube.com/watch?v=dQw4w9WgXcQ")

End Sub


I can get the macro to run in the editor but cant get it to auto run and open if the text changes to "John". Not 100% what I am missing and any help would be appreciated.
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.

Forum statistics

Threads
1,215,050
Messages
6,122,868
Members
449,097
Latest member
dbomb1414

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