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

dear all,

using <colpctsum> I get the percentage of a column with amounts.

great but HOW do I get tha value itself   ( amount * colpctsum )  ??

 

H.

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
ed_sas_member
Meteorite | Level 14

Hi @Jaheuk 

 

Totally agree with @Kurt_Bremser984.555 IS already 55,8% of 1.764.661.

 

But if you think that makes sense in your context, you can try this to get your report:

 

data have;
	input amount;
	datalines;
984555
109331
2933
378
620125
46038
1011
291
;
run;

proc sql;
	create table want as
	select a.amount,
		   a.amount / b.total as percent format=percent8.1,
		   a.amount * calculated percent as value
	from have as a, (select sum(amount) as total from have) as b;
quit;

proc print data=want noobs;
	sum amount percent value;
run;

 Capture d’écran 2020-01-02 à 12.42.44.png

 

View solution in original post

4 REPLIES 4
ed_sas_member
Meteorite | Level 14

Hi @Jaheuk 

 

Could you please provide some sample data as well as the desired output?

 Thank you!

Jaheuk
Obsidian | Level 7

Capture.PNG

55,8 %  of amount 984.555 = 549.283 euro, so an extra column with this value

 

I googled a lot, but I think it is not possible to add a calculated column Smiley Sad

 

 

 

 

 

ed_sas_member
Meteorite | Level 14

Hi @Jaheuk 

 

Totally agree with @Kurt_Bremser984.555 IS already 55,8% of 1.764.661.

 

But if you think that makes sense in your context, you can try this to get your report:

 

data have;
	input amount;
	datalines;
984555
109331
2933
378
620125
46038
1011
291
;
run;

proc sql;
	create table want as
	select a.amount,
		   a.amount / b.total as percent format=percent8.1,
		   a.amount * calculated percent as value
	from have as a, (select sum(amount) as total from have) as b;
quit;

proc print data=want noobs;
	sum amount percent value;
run;

 Capture d’écran 2020-01-02 à 12.42.44.png

 

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

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1440 views
  • 0 likes
  • 3 in conversation