193k views
2 votes
1.Use the SAS datasets empdata to calculate each employee's new salary. Employees are to receive a 3% raise if salary is great than $50,000. Prepare a report which

1 Answer

5 votes

Answer:

Sorted by Last Name, First Name and Salary ;

PROC SORT DATA = Employee OUT = Sorted_dept_sal ;

By LastName FirstName NewSalary ;

RUN ;

PROC PRINT DATA = Sorted_dept_sal ;

RUN ;

PROC SALARY DATA = Employee SALARY = 3%_LIMIT MIN 50,000_sal ;

By NewSalary 3% IncreasedSALARY ;

RUN ;

PROC PRINT DATA = 3%_LIMIT MIN 50,000_sal ;

RUN ;

Step-by-step explanation:

SAS is a business intelligence software which helps the business professionals with complex calculations, analysis and data handling. It is widely used by many businesses in the world for statistical data handling and analysis. It allows business professionals to perform advance analysis, data management, complex calculation. This software is used to save time and cost.

User Mbieren
by
6.4k points