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

Hi guys,

 

struggling with a formula for a new variable. Essentially I want a new variable to be Variable C =Variable A/((Variable B/sum(Variable B))*sum(Variable A).

Seems simple but cant get it to work. If I can get a simple element which gives the column total to use in the formula that would be great.

 

SectorVariable AVariable BVariable C
13600 
22003,000 
37200 
450800 
5701,000 
1 ACCEPTED SOLUTION

Accepted Solutions
Jagadishkatam
Amethyst | Level 16

Hope this what you are expecting

 

data have;
input Sector VariableA VariableB;
cards;
1 3 600	 
2 200 3000	 
3 7 200	 
4 50 800	 
5 70 1000
;

proc sql;
create table want as select sector, VariableA, VariableB, (select sum(variableB) from have ) as sumB, (select sum(variableA) from have ) as sumA, 
VariableA/((VariableB/(select sum(variableB) from have ))*(select sum(variableA) from have)) as variableC
 from have;
quit;
Thanks,
Jag

View solution in original post

1 REPLY 1
Jagadishkatam
Amethyst | Level 16

Hope this what you are expecting

 

data have;
input Sector VariableA VariableB;
cards;
1 3 600	 
2 200 3000	 
3 7 200	 
4 50 800	 
5 70 1000
;

proc sql;
create table want as select sector, VariableA, VariableB, (select sum(variableB) from have ) as sumB, (select sum(variableA) from have ) as sumA, 
VariableA/((VariableB/(select sum(variableB) from have ))*(select sum(variableA) from have)) as variableC
 from have;
quit;
Thanks,
Jag

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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