BookmarkSubscribeRSS Feed
Prateek1
Obsidian | Level 7
hi, what should be the code for this question ? In the Grocery_coupons categorize the respondents i) into 3 categories based on their spending (below 100, 100-200 and above 200) ii) count the number of unique customers in each group ( using Select case when )? using proc sql
1 REPLY 1
RahulG
Barite | Level 11

I am not sure if you are looking answer in one sql.  Below I have done in two steps and used case when for step 1.

 

proc sql;

create table Grocery_coupons_category

as 

select Customer_id

,case when spending < 100 then 'Below 100'

         when spending between 100 and 200 then '100 - 200'

         else 'Above 200' 

end as Customer_category

from Grocery_coupons;

 

create table Customer_count_category_wise 

as

select Customer_category

, count(distinct customer_id)

from Grocery_coupons_category

group by Customer_category;

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
  • 1 reply
  • 813 views
  • 1 like
  • 2 in conversation