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

Good day

 

I have a data set that contains account numbers and payments. The account numbers are not unique.

 

I would like to sum to payments for each account so the account numbers can be unique.

 

Is this possible? Can you please help me?

 

All the data has been imported into SAS

1 ACCEPTED SOLUTION

Accepted Solutions
PeterClemmensen
Tourmaline | Level 20

Hi an welcome to the SAS Community 🙂

 

Yes, it is possible. Tons of examples here on the community or online in general. Post an example of what your data looks like. This makes it much easier to provide a usable code answer.

 

Something along these lines will probably do 

 

proc summary data=have nway missing;
    class Account;
    var Payment;
    output out=want sum=;
run;

 

View solution in original post

5 REPLIES 5
PeterClemmensen
Tourmaline | Level 20

Hi an welcome to the SAS Community 🙂

 

Yes, it is possible. Tons of examples here on the community or online in general. Post an example of what your data looks like. This makes it much easier to provide a usable code answer.

 

Something along these lines will probably do 

 

proc summary data=have nway missing;
    class Account;
    var Payment;
    output out=want sum=;
run;

 

Mannie10
Calcite | Level 5

works perfectly, thank you

PeterClemmensen
Tourmaline | Level 20

Anytime, glad to help 🙂

Reeza
Super User
Note that I modified your subject line, generic titles such as 'help' don't provide any context to your question and 'urgent' isn't really appropriate for a volunteer user community forum.
Mannie10
Calcite | Level 5

appreciated, thank you

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

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 5 replies
  • 1448 views
  • 3 likes
  • 3 in conversation