BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
kuridisanjeev
Quartz | Level 8

Hi..

   IDNAMEMARKS
100SANJEEV23
101SRINATH25
102SRIHARI

28

i want to add another row to the above data by using data step ...

Thanks in Advance....

(DATA AFTER ADDING THE ROW)

ID
NAMEMARKS
100SANJEEV23
101 SRIHARI25
102SRINATH28
103SRIKANTH30
1 ACCEPTED SOLUTION

Accepted Solutions
Linlin
Lapis Lazuli | Level 10

How about:

data have;

input ID$ NAME $ MARKS ;

cards;

100 SANJEEV 23

101 SRINATH 25

102 SRIHARI 28

;

data want;

length name $ 8;

set have end=eof;

output;

if eof then do;

   id='103';

   name='SRIKANTH';

   marks=30;

   output;

  end;

run;

proc print;run;

                                Obs      name      ID     MARKS

                                  1     SANJEEV     100      23

                                  2     SRINATH     101      25

                                  3     SRIHARI     102      28

                                  4     SRIKANTH    103      30

Linlin

View solution in original post

3 REPLIES 3
Linlin
Lapis Lazuli | Level 10

How about:

data have;

input ID$ NAME $ MARKS ;

cards;

100 SANJEEV 23

101 SRINATH 25

102 SRIHARI 28

;

data want;

length name $ 8;

set have end=eof;

output;

if eof then do;

   id='103';

   name='SRIKANTH';

   marks=30;

   output;

  end;

run;

proc print;run;

                                Obs      name      ID     MARKS

                                  1     SANJEEV     100      23

                                  2     SRINATH     101      25

                                  3     SRIHARI     102      28

                                  4     SRIKANTH    103      30

Linlin

imanojkumar1
Quartz | Level 8

What if I want to add a row before first row in the above sample data?

 

Also if I sort it by Names and then want to imput a row before first row, how can it be done?

marcomonti
Calcite | Level 5
Try with double dataset in set statement:
data want;
set have1
have2;
run;

note:have1 and have2 should have same PDV.

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
  • 3 replies
  • 152919 views
  • 9 likes
  • 4 in conversation