BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
FreelanceReinh
Jade | Level 19

@Phil_NZ wrote:

I am wondering how come you remember exactly each code like that, I am overwhelmed by how fast you reply to me, can I ask about the experience though?


I started with SAS 6.12 in 1997 and haven't finished learning yet, although I've been programming in SAS in each and every job/project since then. The amount of SAS-related topics that I'm planning to learn is still immense.

 

Good luck with your studies!

Tom
Super User Tom
Super User

Just look at the files using SAS code instead of some random GUI tool.

Make a view and a dataset.

data myview / view=myview ;
  set sashelp.class;
run;
data mydata ;
  set sashelp.class;
run;

Look at them.

data _null_;
  infile "%sysfunc(pathname(work))/myview.sas7bvew" recfm=f lrecl=80;
  input;
  list;
run;
data _null_;
  infile "%sysfunc(pathname(work))/mydata.sas7bdat" recfm=f lrecl=80;
  input;
  list;
run;
Phil_NZ
Barite | Level 11

Hi @Tom 

Thank you @Tom 

A great way for me to read the file by using log.

 

Warm regards.

Phil. 

Thank you for your help, have a fabulous and productive day! I am a novice today, but someday when I accumulate enough knowledge, I can help others in my capacity.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 17 replies
  • 2105 views
  • 11 likes
  • 5 in conversation