BookmarkSubscribeRSS Feed
vinod4842
Fluorite | Level 6

I am looking for salary total. What can I do for that? Please rectify my query.

 

proc import datafile="C:\Users\user\Desktop\result of sas\Assignments\EMPLOYEE.csv" out=work.employee dbms=csv replace; 
run;


data emp;
FORMAT salary dollar8.;
set work.employee;
run;

 

 

 

c.PNG

 

5 REPLIES 5
jdwaterman91
Obsidian | Level 7

There are multiple ways of acquiring the sum of a column in SAS.

 

Here are a couple of ways that could work for you.

 

data Sums;
Set Employee end = last;
Retain Total;
Total + Salary;
keep Total;
if last;
Run;

Proc SQL;
Select Sum(salary) As Total_Sum
From employee;
Quit;

 

vinod4842
Fluorite | Level 6
57 Proc SQL;
58 Select Sum(salary) As Total_Sum
59 From employee;
ERROR: The SUM summary function requires a numeric argument.
60 Quit;


i applied this one but it is not accepted ad showing error
kiranv_
Rhodochrosite | Level 12

please use proc contents to see whether your column is numeric value or not and also see whether you are using column label instead  of column name(I think this is what might be happening).

 

Reeza
Super User

@kiranv_ wrote:

please use proc contents to see whether your column is numeric value or not and also see whether you are using column label instead  of column name(I think this is what might be happening).

 


@kiranv_ I think Salary is a character column. You can see that becauses it's aligned right. Numeric columns are aligned left and characters are aligned right, by default.

 

 

kiranv_
Rhodochrosite | Level 12

Yes, You are right @Reeza

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
  • 5 replies
  • 1661 views
  • 1 like
  • 4 in conversation