create folders and hyperlink to them

abbyabby

New Member
Joined
May 28, 2023
Messages
16
Office Version
  1. 365
Hello
I have code that creates the folders but if possible would like it to also hyperlink to them at the same time. It creates them in the same folder the spreadsheet is saved in so I don't have to update the path each time I use it. Thank you in advance :)

This is the code I have:

Sub MakeFolders()
Dim Rng As Range
Dim maxRows, maxCols, r, c As Integer
Set Rng = Selection
maxRows = Rng.Rows.Count
maxCols = Rng.Columns.Count

For c = 1 To maxCols
r = 1

Do While r <= maxRows
If Len(Dir(ActiveWorkbook.Path & "\" & Rng(r, c), vbDirectory)) = 0 Then
MkDir (ActiveWorkbook.Path & "\" & Rng(r, c))
On Error Resume Next
End If
r = r + 1
Loop

Next c

End Sub
 

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
I have amended your code as follows...

VBA Code:
Sub MakeFolders()

    Dim Rng As Range
    Dim maxRows As Long, maxCols As Long, r As Long, c As Long
    Dim newFolderName As String
    
    Set Rng = Selection
    
    maxRows = Rng.Rows.Count
    maxCols = Rng.Columns.Count
    
    For c = 1 To maxCols
        r = 1
        Do While r <= maxRows
            newFolderName = ActiveWorkbook.Path & "\" & Rng(r, c).Value
            If Len(Dir(newFolderName, vbDirectory)) = 0 Then
                MkDir newFolderName
                ActiveSheet.Hyperlinks.Add anchor:=Rng(r, c), Address:=newFolderName, TextToDisplay:=newFolderName
            End If
            r = r + 1
        Loop
    Next c

End Sub

By the way, you'll notice that I replaced...

VBA Code:
Dim maxRows, maxCols, r, c As Integer

with

VBA Code:
Dim maxRows As Long, maxCols As Long, r As Long, c As Long

That's because in your original line of code maxRows, maxCols, and r are actually being declared as Variant, not Integer. In order to declare each variable as Integer, you'll need to explicitly declare each one with the desired type, as I've done. You'll also notice that I've declared them as Long instead of Integer. That's because the total number of rows in a worksheet exceeds the value an Integer variable can hold. Also, there's no real advantage in declaring a variable as an Integer vs Long.

Hope this helps!
 
Upvote 1
Solution
I have amended your code as follows...

VBA Code:
Sub MakeFolders()

    Dim Rng As Range
    Dim maxRows As Long, maxCols As Long, r As Long, c As Long
    Dim newFolderName As String
   
    Set Rng = Selection
   
    maxRows = Rng.Rows.Count
    maxCols = Rng.Columns.Count
   
    For c = 1 To maxCols
        r = 1
        Do While r <= maxRows
            newFolderName = ActiveWorkbook.Path & "\" & Rng(r, c).Value
            If Len(Dir(newFolderName, vbDirectory)) = 0 Then
                MkDir newFolderName
                ActiveSheet.Hyperlinks.Add anchor:=Rng(r, c), Address:=newFolderName, TextToDisplay:=newFolderName
            End If
            r = r + 1
        Loop
    Next c

End Sub

By the way, you'll notice that I replaced...

VBA Code:
Dim maxRows, maxCols, r, c As Integer

with

VBA Code:
Dim maxRows As Long, maxCols As Long, r As Long, c As Long

That's because in your original line of code maxRows, maxCols, and r are actually being declared as Variant, not Integer. In order to declare each variable as Integer, you'll need to explicitly declare each one with the desired type, as I've done. You'll also notice that I've declared them as Long instead of Integer. That's because the total number of rows in a worksheet exceeds the value an Integer variable can hold. Also, there's no real advantage in declaring a variable as an Integer vs Long.

Hope this helps!
This is awesome. Thank you! Is it possible to not include the file pathway in the spreadsheet?
 
Upvote 0
You're very welcome, I'm glad I could help.


Simply replace...

VBA Code:
TextToDisplay:=newFolderName

with

VBA Code:
TextToDisplay:=Rng(r, c).Value
Thank you! My day's / weeks / months are so much easier having this little gem to use :)
 
Upvote 0

Forum statistics

Threads
1,215,092
Messages
6,123,063
Members
449,090
Latest member
fragment

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