BookmarkSubscribeRSS Feed
attjooo
Calcite | Level 5

I want to delete the first 3 records in MYTABLE.

What's wrong with the following code:

data mytable;

set mytable;

delete point (1 2 3);

run;

4 REPLIES 4
Jaheuk
Obsidian | Level 7

this "delete point", I have never seen that ;-(

use:

data test;

set sashelp.class(firstobs=4);

run;

Patrick
Opal | Level 21

I prefer the solution proposes but for the sake of getting the syntax right in your code:

data mytable;

set mytable;

if _n_ in (1,2,3) then delete;

run;

ballardw
Super User

Or

data mytable;

     set mytable (firstobs=4);

run;

Though I have seen LOTS of issues with

Data name;

     set name;

unless you can get the original data set back.

stat_sas
Ammonite | Level 13

Although you have multiple solutions based on above responses. Just to make sure, you are not trying to do this using point option right?

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 4 replies
  • 1468 views
  • 0 likes
  • 5 in conversation