BookmarkSubscribeRSS Feed
brophymj
Quartz | Level 8

I am looking to convert a table like the one below...

SectionPeriodCount
1Q11
1Q2.
1Q3.
1Q42
1Q5.
2Q1.
2Q21
2Q3.
3Q11

into the following table. So, turn the count into a running total for each section.

SectionPeriodCount
1Q11
1Q21
1Q31
1Q42
1Q52
2Q10
2Q21
2Q31
3Q11
...
4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

Can you provide some test data in the form of a datastep, as your data is before.  I don't see why you only have number at certain points.  I mean you could do retain, however, why do you only have some numbers, it may be easier to change the way count is added to the dataset rather than retain them afterwards.

Kurt_Bremser
Super User

data want (drop=oldcount);

set have (rename=(count=oldcount));

by section;

retain count;

if first.section then count = 0;

if oldcount ne . then count=oldcount;

run;

Edit: Replaced zero with dot in second if condition

Post updated: Kurt Bremser

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Yes, but it still begs the question, what is the count column, how is it arrived at, i.e. why does Q1 have 1 and Q2 not?  Also, you can't have a Q5.

data_null__
Jade | Level 19

Looks like a common LOCF problem to me.

data section;
   infile cards expandtabs;
  
input section period :$2. count;
   cards;
1  Q1 1
1  Q2 .
1  Q3 .
1  Q4 2
1  Q5 .
2  Q1 .
2  Q2 1
2  Q3 .
3  Q1 1
;;;;
   run;
proc print;
  
run;
data section;
   update section(obs=0 keep=section) section;
   by section;
   if first.section then count=coalesce(count,0);
   output;
  
run;
proc print;
  
run;

Capture.PNG

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 827 views
  • 0 likes
  • 4 in conversation