I have several references to a specific path in my code. For example:
sFile = "C:\Users\User1\Dropbox\z_sync_do_not_delete\Downloads\*.*"
If Dir(sFile) = "" Then
MsgBox "You have already completed this step. Please download reports now."
Exit Sub
End If
Kill "C:\Users\User1\Dropbox\z_sync_do_not_delete\Downloads\*.*"
This path is different on different computers. I have a "Setup" sheet where the workbook parameters are entered. I want to enter a path on A7 of Setup that my code will forever refer to. Can this be done?
Bookmarks