Thanks to Reeza's motivating me, I succeeded in importing an Excel dataset, and converting it into a work dataset. How do I now convert the work dataset into a permanent dataset within a dubdirectory of myfolders? Also, please let me know exactly how I can find your response in this community blog center, so that I can comment on it? I was not able to find your response to my prior question. I just had the response in theemail you sent me.
To create the work dataset I followed the following directions:
Your original post is here. You can get to it by clicking your name icon and it will take you to your profile page.
To create a 'permanent' library set up a library in SAS and then assign the data to the new library.
libname myWork '/folders/myfolders/myWork/';
data myWork.myDataset;
set myDataset;
run;
Thanks very much!
I see someone has provided code to read and copy the work.data_set
no need to read it, just
proc copy in = work
out = my_lib;
select my_data;
Ron Fehd CPU seconds counter
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.