Copy to next hyperlink

Orangeanorak

Active Member
Joined
Nov 22, 2002
Messages
276
Office Version
  1. 365
Platform
  1. Windows
Hi people
Don't know if this can be done.

Cell C1 has hyperlink to a document ABC1
Cell C2 has hyperlink to a document ABC2

Is it possible to copy a formula into each cell in range C3 to C100 to hyperlink to documents ABC3 to ABC100 without having to enter the hyperlinks individually.

Hope this makes sense

Thankd
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Hi people
Don't know if this can be done.

Cell C1 has hyperlink to a document ABC1
Cell C2 has hyperlink to a document ABC2

Is it possible to copy a formula into each cell in range C3 to C100 to hyperlink to documents ABC3 to ABC100 without having to enter the hyperlinks individually.

Hope this makes sense

Thankd


something like this maybe,


Code:
Sub hyperlinks()
'
filepath = "type filepath to the document(s) location"
  
   For i = 1 To 100
   Cells(i, 3).Select
       ActiveSheet.hyperlinks.Add Anchor:=Selection, Address:= _
        filepath & "\" & "ABC" & i, TextToDisplay:= _
       "ABC" & i
    Next i
End Sub

This is assuming you have the documents in the same folder, and that they are named ABC1-100
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,535
Members
449,037
Latest member
tmmotairi

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