BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Kran
Obsidian | Level 7

Hi ,

I have a dataset as below -

 

ShipmentID     ShipmentType   Customer     From          To           Priceperpackagein$    PriceofShipmentin$    

        1                         A                    X            NYC        BOS                     5                                   -

        1                         A                    X            NYC        BOS                     7                                   -

        2                         B                    Y            NYC        DEN                     -                                   30

        2                         B                    Y            NYC        DEN                     -                                   30

        3                         C                    Z            NYC        CHI                      -                                   25

        3                         C                    Z            NYC        CHI                      -                                   25

        4                         A                    W           NYC        BOS                     5                                   -

        4                         A                    W           NYC        BOS                     7                                   -

        5                         D                    X            NYC        BOS                     5                                   -

        5                         D                    X            NYC        BOS                     7                                   -

        6                         E                    Y            NYC        DEN                     5                                   -

        6                         E                    Y            NYC        DEN                     7                                   -

 

So here we see that Shipment types A, D & E are priced per package in the shipment, while types B & C are priced for the whole shipment. (to be noted : the pricing done for shipment visible in each row is a repeat value, whereas the package prices are individual and are to be summed up)

 

So I guess you see where I'm going..I want to add a column on the extreme right end named ..'TotalPricein$'

and put in a condition

for each ShipmentID, if ShipmentType  is A or D or E,

then value of TotalPricein$ = sum of Priceperpackagein$

else value of TotalPricein$ = PriceofShipmentin$

 

something along these lines..

 

the prob is that the criteria for values to be summed up are in diff rows and columns....so need help there with the logic..

perhaps in two table transformations?

Thanks!

 

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

Can you post the output ?

 

data have;
input ShipmentID     ShipmentType  $ Customer   $  From    $   To $     Priceperpackagein   PriceofShipmentin;
cards;
        1                         A                    X            NYC        BOS                     5                                   .
        1                         A                    X            NYC        BOS                     7                                   .
        2                         B                    Y            NYC        DEN                     .                                   30
        2                         B                    Y            NYC        DEN                     .                                   30
        3                         C                    Z            NYC        CHI                      .                                   25
        3                         C                    Z            NYC        CHI                      .                                   25
        4                         A                    W           NYC        BOS                     5                                   .
        4                         A                    W           NYC        BOS                     7                                   .
        5                         D                    X            NYC        BOS                     5                                   .
        5                         D                    X            NYC        BOS                     7                                   .
        6                         E                    Y            NYC        DEN                     5                                   .
        6                         E                    Y            NYC        DEN                     7                                   .
;
run;

proc sql;
create table want as
 select *,coalesce(sum(Priceperpackagein),PriceofShipmentin) as total
  from have 
   group by shipmentid;
quit;

View solution in original post

2 REPLIES 2
Ksharp
Super User

Can you post the output ?

 

data have;
input ShipmentID     ShipmentType  $ Customer   $  From    $   To $     Priceperpackagein   PriceofShipmentin;
cards;
        1                         A                    X            NYC        BOS                     5                                   .
        1                         A                    X            NYC        BOS                     7                                   .
        2                         B                    Y            NYC        DEN                     .                                   30
        2                         B                    Y            NYC        DEN                     .                                   30
        3                         C                    Z            NYC        CHI                      .                                   25
        3                         C                    Z            NYC        CHI                      .                                   25
        4                         A                    W           NYC        BOS                     5                                   .
        4                         A                    W           NYC        BOS                     7                                   .
        5                         D                    X            NYC        BOS                     5                                   .
        5                         D                    X            NYC        BOS                     7                                   .
        6                         E                    Y            NYC        DEN                     5                                   .
        6                         E                    Y            NYC        DEN                     7                                   .
;
run;

proc sql;
create table want as
 select *,coalesce(sum(Priceperpackagein),PriceofShipmentin) as total
  from have 
   group by shipmentid;
quit;
Kran
Obsidian | Level 7

Gosh, I salute you for your help! Thanks a ton

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 3042 views
  • 2 likes
  • 2 in conversation