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

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