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

Hello all.

 

I have a file that lists out individual holdings by 2 managers. I successfully created a summarized report of total holding by each manager using the code below: However, I actually need the summarized figure from this report in other calculations. Because it is a "report", I wasn't sure how I can call on the summarized field within. 

 

What I am trying to do is say "this manager currently holds $10,000 in apple, and divide that $10,000 by the summarized total from the report to get a % of total column". 

 

 

proc report data=temp.tsndata1;
columns mgrno fdate shareprice;
define mgrno/group;
define fdate/group;
define shareprice/analysis sum;
run;

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

See if this helps helps.

proc report data=temp.tsndata1;
columns mgrno fdate shareprice,(sum pctsum);
define mgrno/group;
define fdate/group;
define shareprice/analysis;
run;

The comma after shareprice indicates that you want to "nest" results and requesting multiple statistics.

Or you can use alias

 

proc report data=temp.tsndata1; 
   columns mgrno fdate shareprice shareprice=sharepctsum; 
   define mgrno/group; 
   define fdate/group; 
   define shareprice/analysis sum; 
   define sharepctsum / analysis pctsum;
run;

To get more precise suggestions you would need to provide example data and perhaps expected numbers hand worked from the results of your current report.

View solution in original post

1 REPLY 1
ballardw
Super User

See if this helps helps.

proc report data=temp.tsndata1;
columns mgrno fdate shareprice,(sum pctsum);
define mgrno/group;
define fdate/group;
define shareprice/analysis;
run;

The comma after shareprice indicates that you want to "nest" results and requesting multiple statistics.

Or you can use alias

 

proc report data=temp.tsndata1; 
   columns mgrno fdate shareprice shareprice=sharepctsum; 
   define mgrno/group; 
   define fdate/group; 
   define shareprice/analysis sum; 
   define sharepctsum / analysis pctsum;
run;

To get more precise suggestions you would need to provide example data and perhaps expected numbers hand worked from the results of your current report.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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