| Customer | Product | amount |
| Paul | apple | 2 |
| Paul | banana | 5 |
| Paul | apple | 3 |
| James | banana | 2 |
| James | grape | 5 |
| James | banana | 3 |
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.
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.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.