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