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

I have a dataset as below

PT     N

102   25

103   34

Total   .

 

I need to replace the missing with the sum of the 2 counts in N. Can i do that in datastep?

 

1 ACCEPTED SOLUTION
2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Whilst @Kurt_Bremser has given you the answer, I would step back one and ask why you have a dataset which looks like that in the first place.  How have you added "Total" without adding the sum in at the same time, seems like the step before needs changing.  You can add totals on in various ways, my first thought was:

proc sql;
  create table WANT as
  select  *
  from    HAVE
  union all
  select  "Total",
          sum(N) 
  from    HAVE;
quit;

Simply adds a row at the end of the dataset with total.

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
  • 2 replies
  • 1253 views
  • 1 like
  • 3 in conversation