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.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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