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

Hi, I need to combine the value of 2 rows based on one variable duplicate "416"

 

numberflagACQflagRETflagBCBSUM_of_SUM_of_ACTV_AMT
41600113.20
41601015.00

 

so the output is like 

 

numberflagACQflagRETflagBCBSUM_of_SUM_of_ACTV_AMT
41601128.20
1 ACCEPTED SOLUTION

Accepted Solutions
stat_sas
Ammonite | Level 13

Hi,

 

Please try this:

 

proc sql;
create table want as
select number,sum(flagACQ) as flagACQ,sum(flagRET) as flagRET,sum(flagBCB) as flagBCB,
sum(SUM_of_SUM_of_ACTV_AMT) as SUM_of_SUM_of_ACTV_AMT from have
group by number;
quit;

View solution in original post

4 REPLIES 4
stat_sas
Ammonite | Level 13

Hi,

 

Please try this:

 

proc sql;
create table want as
select number,sum(flagACQ) as flagACQ,sum(flagRET) as flagRET,sum(flagBCB) as flagBCB,
sum(SUM_of_SUM_of_ACTV_AMT) as SUM_of_SUM_of_ACTV_AMT from have
group by number;
quit;

bohonghong
Fluorite | Level 6
 

Hi, I need to combine the value of 2 rows based on one variable duplicate "416"

 

numberflagACQflagRETflagBCBSUM_of_SUM_of_ACTV_AMT
41600113.20
41601015.00

 

so the output is like 

 

numberflagACQflagRETflagBCBSUM_of_SUM_of_ACTV_AMT
41601128.20

 

Thanks

stat_sas
Ammonite | Level 13

Sql syntax is doing the same as you described. If you print data set "want" you will have the required output.

 

proc print data=want;

run;

ballardw
Super User

From your example it is not clear whether you want SUM or MAXIMUM value for the variables flagACQ flagRET and flagBCB.

 

What if your example data looked like?

number flagACQ flagRET flagBCB SUM_of_SUM_of_ACTV_AMT
416 0 0 1 13.20
416 0 1 0

15.00

 416           0                1              0                12.00

 

What would the result  be?

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!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 1358 views
  • 0 likes
  • 3 in conversation