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

Hi,

 

I have a code to count duplicated items:

 

data work.rank;

set work.Inbound;

by ITEM;
if first.ITEM then Rank=1;
else Rank+1;
Run;

 

This is great and does the job i want.

 

However, i'm now bringing through data from different countries so i now have a column that shows which country the items are in. In order for this code to work i have to have the data sorted by Item so that it can count. However i don't want to include different country data in the count. So if there is 1 item in GB 5 times it will rank it 1,2,3,4 and 5 etc, but when it goes to say FR and has the same Item, i want that one to start at 1.

 

eg:

 

CountryItemRank
GB1231
GB1232
GB1233
GB12341
GB12342
FR121
FR1231
FR1232
FR12341

 

The original code i had was perfect for use in 1 country but as soon as i brought through more it is failing as i tried sorting by country first and then item.

 

any help would be brilliant.

 

Apologies if what i am asking is silly.

 

Cheers,

 

M.

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Sort by item and country, and then use

by item country;

and first.country for the condition in your datastep.

Or simply sort by country and item, and use

by country item;

in your original datastep with the same first. condition.

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

Sort by item and country, and then use

by item country;

and first.country for the condition in your datastep.

Or simply sort by country and item, and use

by country item;

in your original datastep with the same first. condition.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

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!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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