BookmarkSubscribeRSS Feed
kk5
Calcite | Level 5 kk5
Calcite | Level 5

Hi All,

I have a table with say 3 columns 1.Accno 2.month 3.Bal

What is required :

In this table i have records for each account where balance is missing for random months.(no of months considered : 24only)

What i needed is, to take the immediate next available balance , immediate preceeding available balance wrt the missing bal record, take an average of these values and populate this avg in place of the missing bal record.

table format :

Accno MOnth Bal

1         oct16   100

1         sep16   .

1.        aug16   50

 

As you can see, sep16 has a missing bal. so, avg(oct16 bal ,aug16) is 2 be populated in sep16 record.

 

Thankx in advance for any help!.

1 REPLY 1
Ksharp
Super User
What if there are multiple series missing value ,what you gonna do ?



data have;
input Accno MOnth $ Bal;
cards;
1         oct16   100
2         sep16   .
3.        aug16   50
;
run;
data want;
 merge have have(keep=bal firstobs=2 rename=(bal=_bal));
 lag=lag(bal);
 if missing(bal) then bal=mean(lag,_bal);
 drop _bal lag;
run;


hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 1 reply
  • 1024 views
  • 0 likes
  • 2 in conversation