Hi,
I'm a newbie to SAS and have a quick question that is stumping me. I'm not sure if this post belongs here but, simply, I would like to read in a number of sas data files and print the first few observations in each file. The code I am trying is :
LIBNAME MyLib 'C:\Documents and Settings\Paul\data';
PROC PRINT DATA = MyLib.Stocks_1 (obs=20);
TITLE 'stocks 1';
PROC PRINT DATA = MyLib.Stocks_1 (obs=20);
TITLE 'stocks 2';
RUN;
But that only prints MyLib.Stocks_1 ?
I've used matlab for years so this is a bit weird so far ... thanks