BookmarkSubscribeRSS Feed
Amali6
Quartz | Level 8

Hi

Could anyone help on how to create a new column(total) by adding the sum of two numerical variables(var1, var2) from the main table, using proc sql?

For example,

if i want to add var1 and var2 columns and name the new column as total, from work.project. 

 

Thanks

2 REPLIES 2
novinosrin
Tourmaline | Level 20

Is this a serious question? 

 

proc sql;

 select *, sum(var1,var2) as total

from your_table;

quit;

 

Reeza
Super User

If you search any SAS topic and google and don't find the answer, search again and limit the results by adding the followings:  "yourTerm + Tutorial Site:Lexjansen.com

 

For 99% of topics you'll get a solution such as the following:

 

https://support.sas.com/resources/papers/proceedings/proceedings/sugi30/257-30.pdf

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
  • 2 replies
  • 501 views
  • 2 likes
  • 3 in conversation