I'd like to be able to create a macro or VBA code that would allow me to create a job folder on our local server using data from my smartsheet.
The VBA code in Access looks like this:
Private Sub cmdCreateCaseFolder_Click()
If Dir("\\MA021SFS01\NorthEast_EWP\2018CaseFolders\" & Me.Project# & "-" & Me.Project Name & "-" & Me.Company.Column(1) & "-Case " & Me.ID, vbDirectory) = "" Then
MkDir ("\\MA021SFS01\NorthEast_EWP\2018CaseFolders\" & Me.Project# & "-" & Me.Project Name & "-" & Me.Company.Column(1) & "-Case " & Me.ID)
End If
End Sub
I'd also like to be able to create a hyperlink to the folder using a macro similar to the shortcut key Control-K in MS Excel or Access.
Is there a way to accomplish this in SS?
Thank you,
Jim