I have a couple of macros where I had set the path in the code, not realizing at the time that because of different rights, not everyone has the same path. Also, it is not good to hard code the path if drive letters and such are eventually changed.
For example, one person may have
P:\LoanData\
another
P:\SFP\LoanData\
and another
P:Input\SFP\LoanData\
In addition, those are production paths. During testing the paths would be different, but one issue at a time.
For one of the macros I decided to create a drop-down list with the various paths but there are two disdvantages to that: (1) The list has to be maintained by someone (2) a user can inadvertantly choose the wrong path.
Thus, I would like to avoid the above, but I also need to be able to handle all of these different paths.
Any suggestions is greatly appreciated. Please keep in mind, these are paths that are being written to. The user is not extracting anything from the paths.
Thanks again
For example, one person may have
P:\LoanData\
another
P:\SFP\LoanData\
and another
P:Input\SFP\LoanData\
In addition, those are production paths. During testing the paths would be different, but one issue at a time.
For one of the macros I decided to create a drop-down list with the various paths but there are two disdvantages to that: (1) The list has to be maintained by someone (2) a user can inadvertantly choose the wrong path.
Thus, I would like to avoid the above, but I also need to be able to handle all of these different paths.
Any suggestions is greatly appreciated. Please keep in mind, these are paths that are being written to. The user is not extracting anything from the paths.
Thanks again