BookmarkSubscribeRSS Feed
deleted_user
Not applicable
I would like to create a subset to of data by selecting every 10th record, does anyone know how to do this? Thanks in advance!!
2 REPLIES 2
data_null__
Jade | Level 19
one possibility using SET and POINT.
[pre]
data every10;
do point = 10 to nobs by 10;
set sashelp.shoes point=point nobs=nobs;
output;
end;
stop;
run;
[/pre]
deleted_user
Not applicable
Thanks! This is exactly what I needed.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2 replies
  • 5313 views
  • 0 likes
  • 2 in conversation