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

Hi All,

 

I have a dataset as below and wondering if there is a way I can use Proc Sql to create the new column Percent. I am trying code below which does not work and it gives me 100% for all values -

 

proc sql;
create table test as select a.*,
( Value/ sum(Value) ) as Percent
from test a
group by month,Range;
quit;

 

 

month Id Value Range Percent
Apr 4 3026 (0,20] 39.0%
Apr 4 1627 (20,60] 21.0%
Apr 4 700 (60,70] 9.0%
Apr 4 2406 (70,80] 31.0%
Aug 8 3275 (0,20] 41.2%
Aug 8 1579 (20,60] 19.9%
Aug 8 669 (60,70] 8.4%
Aug 8 2419 (70,80] 30.5%

 

 

Kind regards

SK

1 ACCEPTED SOLUTION

Accepted Solutions
1 REPLY 1
Haikuo
Onyx | Level 15
Group by month;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1553 views
  • 1 like
  • 2 in conversation