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?

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 1597 views
  • 0 likes
  • 5 in conversation