Yes, thank you so much for your reply, I am really appreciative! I have a couple of follow-up questions, if you don't mind. First off, I am trying to group the variables (1) Count_Customer (2) Count_Sales_Rep (3) Sales_Volume based on (1) the Channel 'Sales_Channel' and (2) the Month 'Report_Month' -- I know the results I am getting are not correct (I have attached to this post). How would I go about achieving this? proc sql; create table work.sales_summary1 AS select report_month, count(unique Customer_ID) as Count_Customer, count(unique Sales_Rep_ID) as Count_Sales_Rep, Sales_Volume, Sales_Channel from sales_details group by Report_Month and Sales_Channel; quit;
... View more