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

I want to import a file and in that file  I want to read only last 10 records (not sure how many observation/records we have in that file)?

 

thanks in advance..

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
data want;
 set sashelp.class nobs=nobs;
 if _n_>nobs-10 ;
run;

View solution in original post

2 REPLIES 2
Ksharp
Super User
data want;
 set sashelp.class nobs=nobs;
 if _n_>nobs-10 ;
run;
Kurt_Bremser
Super User

After import, SAS knows the record number:

data want;
set imported nobs=all_obs;
if _n_ > all_obs - 10;
run;

If you absolutely want to do it in the import data step, you can use an external command:

filename oscmd pipe "wc -l &filename.";

data _null_;
infile oscmd;
input lines;
call symputx('lines',lines);
run;

data want;
infile "&filename." /* other options */;
input
........
;
if _n_ > &lines. - 10;
run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 2 replies
  • 1320 views
  • 1 like
  • 3 in conversation