BookmarkSubscribeRSS Feed
bnarang
Calcite | Level 5

Hi Experts

Can you please help me with below problem.

I have some transaction data consecutive and I need to find out which rows consitute the total sum. Below the example:

ID     Total     Transaction     Counter
1     20          3                    1

1     20          7                    2

1     20          5                    3

1     20          5                    4

1     20          8                    5

1     20          1                    6

2     30          10                    1

2     30          10                    2

2     30          12                    3

2     30          8                    4

2     30          2                    5

I need to output the transactions which adds to the total sum. Consider the data is sorted by date and I would only need the most recent. My output should be below:

ID     Total     Transactions     Counter

1     20          3                    1

1     20          7                    2

1     20          5                    3

1     20          5                    4

2     30          10                    2

2     30          12                    3

2     30          8                    4

Transactions would be consecutive only, but range has to be decided based on the calculation. Can you please help me with the hints or solution.

Thanks

1 REPLY 1
LinusH
Tourmaline | Level 20

Sounds like you try to reverse engineer some report data? Perhaps you could get back to the source to get an id of the total calculation?

I don't see a date column, but you might refer to Counter? And how do you mean by recent in this case, you example seems to show the opposite...?

But given your desired output, just use a sum variable, together with a first. logic and explicit output (all in the data step).

Data never sleeps

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 727 views
  • 0 likes
  • 2 in conversation