libname sp4r 'path to folder where you want to save your work';
data sp4r.example_data;
........
@Kadjere wrote:
I am running a VERY simple program from SAS. I am unable to compile it because of this error message - LIBREF SP4R NOT ASSIGNED.
This means you did not create a library reference so you cannot use the library. You either need to create the library reference via a LIBNAME statement or you need to save your data set to the work library which is a temporary location.
data sp4r.example_data; *trying to use the library but it does not exist yet;