BookmarkSubscribeRSS Feed
HKlaassen
Calcite | Level 5

, I want to send a survey to our customers based on a random selection, but i'am stuck.

The problem is that a customers can appear within multiple categories (like customerid 1 and 2 in the example below) what can lead to duplicates in the random selection

What i need is a example how to realise a random selection which selects random three customers a category without duplicaties.

I'm using Enterprise Guide 4.3

input example

category 1customerid
1
2
3
4
5
category 2customerid
1
2
8
7
10

output example

category 1customerid
1
2
3
category 28
9
7
3 REPLIES 3
Doc_Duke
Rhodochrosite | Level 12

One approach would be:

Assign a pseudo-random number between 0 and 1 (the RANUNI function) to every record.

Sort by customerid and that number (the category will now be in a random order within customerid).

Select the first of each customerid (now have one record per customerid).

Re-sort by category and the random number (the customerids will now be in a random order within category).

Select first 3 in each category.

Doc Muhlbaier

Duke

HKlaassen
Calcite | Level 5

Thanks for your reply.

I only have one more question; how do I select the first 3 rows by each category?

Harm Klaassen

Doc_Duke
Rhodochrosite | Level 12

Harm,

I would usually use a DATA step and a retain statement for that.  Something like

DATA want;

SELECT have;

BY category;

RETAIN counter;  DROP counter;

IF first.category THEN counter=0;

IF counter <=3 THEN OUTPUT;

RUN;

Doc

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

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
  • 3 replies
  • 1760 views
  • 1 like
  • 2 in conversation