BookmarkSubscribeRSS Feed
paul2877
Calcite | Level 5
CustomerProductamount
Paulapple2
Paulbanana5
Paulapple3
Jamesbanana2
Jamesgrape5
Jamesbanana3

Here is the table I have.. I have tried to simplify the questions so you understand what i am doing. Trying to create a data step that sums up all the products of apple.. if apple is not in the list for paul then return the banana amount.

2 REPLIES 2
Reeza
Super User
If you're in EG have you tried the summarize task?
Add customer/product to the Classification variables and amount to the analysis variable
Astounding
PROC Star

Here's one approach ... note that these are tools you will need to master in the long run.

 

proc summary data=have nway;

   var amount;

   class customer product;

   where product in ('apple', 'banana');

   output out=totals (keep=customer product amount) sum=;

run;

 

data want;

   set totals;

   by customer;

   if last.customer;

run;

 

Note that the data set TOTALS will automatically be in order BY CUSTOMER PRODUCT.  So if "banana" is there, it will be the last one for a CUSTOMER.  If not, "apple" will be the last one.

 

Good luck.

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1114 views
  • 0 likes
  • 3 in conversation