BookmarkSubscribeRSS Feed
RobertNYC
Obsidian | Level 7

 

Hi all,

I’m having trouble figuring this out. Any help is greatly appreciated

 

I have a data set which contains customer sales data by store and online channels.  I need to take this data set and calculate: 

  1. The total sales by channel
  2. The percent of total sales by channel
  3. The total sales by product type (store and online together)
  4. The percent of total sales by product type (store and Online together)

Here is the table I start with: 

 

CHANNEL_UNIT CUSTOMER_ID prod_type prod_sales
1 17131 STORE_HOME 0
1 17131 STORE_CORE_APP_M 526.8
1 17131 STORE_CHILDREN 0
1 17131 STORE_CORE_APP_W 0
3 17131 ONLINE_HOME 0
3 17131 ONLINE_CHILDREN 196.99
3 17131 ONLINE_CORE_APP_M 119.96
3 17131 ONLINE_CORE_APP_W 0
1 4687704 STORE_HOME 67.5
1 4687704 STORE_CORE_APP_M 0
1 4687704 STORE_CHILDREN 1518
1 4687704 STORE_CORE_APP_W 0
3 4687704 ONLINE_HOME 0
3 4687704 ONLINE_CHILDREN 120
3 4687704 ONLINE_CORE_APP_M 223
3 4687704 ONLINE_CORE_APP_W 0

 

This is the output table I'm trying to achieve: 

 

CUSTOMER_ID Total_Sales Store_Sales Online_Sales Percent_Store_Sales Percent_Online_Sales TTL_HOME TTL_CORE_APP_M TTL_CORE_APP_W TTL_STORE_CHILDREN Per_HOME Per_CORE_APP_M Per_CORE_APP_W Per_STORE_CHILDREN
17131 $843.75 $526.80 $316.95 62.4% 60.2% $0.00 $646.76 $0.00 $196.99 0.0% 76.7% 0.0% 23.3%
4687704 $1,928.50 $1,585.50 $343.00 82.2% 21.6% $67.50 $223.00 $0.00 $1,638.00 3.5% 11.6% 0.0% 84.9%
6 REPLIES 6
LinusH
Tourmaline | Level 20

Take a look at PROC TABULATE or PROC REPORT.

Data never sleeps
RobertNYC
Obsidian | Level 7

Hi, 

 

I need an actual table, not a report output. 

Reeza
Super User

Proc tabulate does generate an OUTPUT dataset that can be manipulated into that format.

 

Another option is combining proc freqs or proc sqls.  Because you're combining at different levels, its probably easiest to do multiple tables and combine them for your final results unless you're super confident in your coding skills.

ballardw
Super User

@RobertNYC wrote:

Hi, 

 

I need an actual table, not a report output. 


If you need a data set then the question becomes what will you do next with the result? In a large number of cases making data wide like that increases coding complexity.

RobertNYC
Obsidian | Level 7

Hi 

 

estructure the data is this way is because I am building a logistic model and I need to have the input variables transformed appropriately. Thanks.     

Ksharp
Super User
It is easy for SQL.



data have;
infile cards truncover expandtabs;
input CHANNEL_UNIT	CUSTOMER_ID	prod_type : $40.	prod_sales;
flag=scan(prod_type,1,'_');
cards;
1	17131	STORE_HOME	0
1	17131	STORE_CORE_APP_M	526.8
1	17131	STORE_CHILDREN	0
1	17131	STORE_CORE_APP_W	0
3	17131	ONLINE_HOME	0
3	17131	ONLINE_CHILDREN	196.99
3	17131	ONLINE_CORE_APP_M	119.96
3	17131	ONLINE_CORE_APP_W	0
1	4687704	STORE_HOME	67.5
1	4687704	STORE_CORE_APP_M	0
1	4687704	STORE_CHILDREN	1518
1	4687704	STORE_CORE_APP_W	0
3	4687704	ONLINE_HOME	0
3	4687704	ONLINE_CHILDREN	120
3	4687704	ONLINE_CORE_APP_M	223
3	4687704	ONLINE_CORE_APP_W	0
;
run;
proc sql;
create table want as
 select customer_id,
  sum(prod_sales) as total_sales,
  (select sum(prod_sales) from have 
   where customer_id=a.customer_id and flag='STORE') as store_sales,
   
  calculated total_sales/(select sum(prod_sales) from have) as percent_total,
  calculated store_sales/(select sum(prod_sales) from have where flag='STORE') 
  as percent_store
 
  from have as a
   group by customer_id;
 quit;





sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 1103 views
  • 2 likes
  • 5 in conversation