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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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