BookmarkSubscribeRSS Feed
NazaninSAS
Quartz | Level 8

Hi,

 

This is my code:

 

proc report nowd data=work.Elig;

title "CRA Eligibility to Retire4";

columns Retfy1 PRI rate;

define Retfy1 / group 'Eligibility to Retire';

define PRI/ analysis n format=comma8. "# of Employees " center;

define rate / computed format=percent8.1 "Rate(%)" center;

compute Rate;

 

Rate= PRI.n/PRI.n;

endcomp;

rbreak after / dol skip summarize style=Header{fontweight=bold} ;

compute after ;

Retfy1="Total";

endcomp;

footnote j=1 "Source: CAS";

run;

 

I would like to be able to calculate the rate over the total here:

 

I don't want to have 100% as shown on the table, however I want to be able to calculate the percentage of each row over the total.

 

Eligibility to Retire

# of Employees

Rate(%)

2019-20

1,247

=1247/ 34458

2020-21

1,428

100.00%

2021-22

1,367

100.00%

2022-23

1,290

100.00%

2023-24

1,262

100.00%

2024-25

1,046

100.00%

2025-26

931

100.00%

2026-27

936

100.00%

2027-28

1,161

100.00%

2028-29

1,053

100.00%

2029-30

1,141

100.00%

20xx

17,870

100.00%

Already Eligible

3,726

100.00%

Total

34,458

100.00%

 

 

7 REPLIES 7
PaigeMiller
Diamond | Level 26

I don't have your data, so I can't test this, but the formula for rate should be

 

Rate= PRI/PRI.sum;
--
Paige Miller
NazaninSAS
Quartz | Level 8

unfortunately, it doesn't work.

Thanks,

Nazanin

PaigeMiller
Diamond | Level 26

Why not?

--
Paige Miller
NazaninSAS
Quartz | Level 8
it doesn't accept sum
PaigeMiller
Diamond | Level 26

How about

 

Rate= PRI/PRI.n;

 

--
Paige Miller
NazaninSAS
Quartz | Level 8
it brings empty results
PaigeMiller
Diamond | Level 26

While I'm sure it is possible to do what you want enitrely in PROC REPORT, I find myself much more comfortable using DATA step and other PROCs (such as PROC SUMMARY and PROC FREQ) in doing these calculations. Then once you have computed the proper values of N and the percents, I would use PROC REPORT to produce the final output table.

--
Paige Miller

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 7 replies
  • 865 views
  • 0 likes
  • 2 in conversation