I'm stuck on the Exporting Data to an Excel Workbook on Lesson 6 SAS Programming 1.
On the Demo, it asks the following:
- Add a LIBNAME statement to create a library named xlout that points to an Excel file named southpacific.xlsx.
Note: Use &outpath to provide the path to the file.
libname xlout xlsx "&outpath/southpacific.xlsx";
I have added xlout for this step and step 6. When I run the program, I receive the error:
In the previous steps, we were instructed to add the Macro variable for output, but that does not seem to be working. Any advice on how to proceed?