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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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