@armoore wrote:
For my understanding, I will not be able to use a libname statement to create a library name in SAS Studio. Unless I manually upload it into SAS Studio?
SAS/Studio is just a browser based user interface to SAS. SAS itself is running on some machine. So for SAS to access data (to read or write) then that machine needs to be able to access the location where the file exists.
Assuming that what you really mean is whether you can access a file that exists on your PC from your SAS session then YES you need to make the file available on the machine where SAS is running.
A libname statement is a piece of SAS code that you use to create a libref (1 to 8 character name) that points to the where the data lives. So you don't upload a LIBNAME statement. You type it into your program and run it. If you want to access data that is not currently on the machine where SAS is running then you need to do something to get SAS access to the data. There is an upload/download user interface in SAS/Studio. But you an use other tools to move the files. Or better just use a shared location that both your PC and the SAS server can access directly.