View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
Harald Staff[_8_] Harald Staff[_8_] is offline
external usenet poster
 
Posts: 28
Default VBA Code== Goto a webpage using a command button in a UserForm

Just to mention an alternative:

Sub Click()
ActiveWorkbook.FollowHyperlink "https://www.google.com/"
End Sub

Best wishes Harald


skrev i melding
...
I want to write a code so when I press a command button in a userform it
will take me to a particular website.. Anyone know how to do this??

Thanks