BookmarkSubscribeRSS Feed
Oreolover25
Calcite | Level 5

proc sql;
title "Employee with the Highest Total Sales";
select Employee_ID ne 99999999, sum(Total_retail_price*Quantity) as Total_Sales
from orion.Order_Fact
group by Employee_ID
having calculated Total_Sales >= all
(select sum(Total_retail_price*Quantity) as Total_Sales
from orion.Order_Fact)
;
quit;
title;

2 REPLIES 2
Oreolover25
Calcite | Level 5
Note: I am trying to calculate the employee with the maximum salary
Amir
PROC Star

Hi,

 

Have you checked the log? Please share the log using the "</>" (Insert Code) icon, so that we can see the code being executed and any messages..

 

 

Kind regards,

Amir.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 646 views
  • 0 likes
  • 2 in conversation