Multiple Hyperlink/VBA Query

OscartheDog

New Member
Joined
Dec 3, 2019
Messages
10
Office Version
  1. 2016
Platform
  1. Windows
Hi All

I was just wondering if anyone could help me with a Multiple Hyperlink/VBA query. I've tried multiple methods but none seem to be working.

I have a list of names where I want there to be a hyperlink option next to each individual name that will take the user to another page when clicked - it will also copy and paste the name they clicked into a certain cell (for example Sheet 2, Cell A1 - same sheet/cell for all individuals). I can do that using:

Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
If Target.Range.Address = "$G$4" Then
Call Macro1
End If
End Sub

with Marco1 copying the cell and pasting it into sheet 2.

Is there a way to use the above for a range of cells - otherwise this would have to be typed out 600 times+. This spreadsheet is something where names are added constantly so I just need to find a way to make this as automatic as possible without adding a new line to the above VBA.

Secondly, I need to find a way to add a hyperlink every time a new name is added to the list - of course it must refer to the cell it is so the above VBA would work.

It's a combination of these 2 things that I need/hope to get working.

I've already looked into the hyperlink function but this has issues - I'm not sure if you can run a macro from a click on a hyperlink function.

I can provide a sheet if needed or answer any questions but would really appreciate some help on this :)

Many Thanks

Oscar
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Try changing the first line to something like
VBA Code:
If Not Intersect(Target, Range("D10:G100")) Is Nothing Then
Adjust the Range as needed.

For simplicity, I would suggest using Double Click instead of Hyperlink.
 
Upvote 0
Thank you so much! I'll be honest - I didn't even know Double Click existed but you learn something new every day!

I've made a few little tweaks and it's all up and running - so thanks again!
 
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,854
Members
449,096
Latest member
Erald

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