BookmarkSubscribeRSS Feed
Sarvendra
Fluorite | Level 6

I have a dataset with ACCNO  as a variable.

we need to grab all the observations with  ACCNOs with COUNT 3 or more .(or to create a new dataset with COUNT 3 or more)

I was thinking to implement this logic using first and last temporary variables but it was giving error.

When it will read the first observation of any individual account number then initialize n=0 and increment each  iterating time and when it will read last observation of any individual account then if value of n greator than or equal to 3 the it should

Create a new dataset satisfying this condition.

Can there be any better  logic for this .as below logic not working

data ssingh.FINADVNEWariable

set ssingh.FINADV

by ACCNO;

if first.ACCNO then n = 0;

n + 1;

if last.ACCNO and n gt 3 then output ;

                                                                          

run;

Please reply

6 REPLIES 6
Reeza
Super User

A Proc SQL step works nicely (untested)

proc sql;

     create table want as

select * from

have where accno in (select accno from have group by accno having count(accno)>3);

quit;

Sarvendra
Fluorite | Level 6

Thanks a lot Reeza its working absolutely fine. Smiley Happy Smiley Happy

SASKiwi
PROC Star

Your code has syntax errors. You are missing semicolons on the first two lines:

data ssingh.FINADVNEWariable;

set ssingh.FINADV;

Otherwise your code should work as long as the dataset on the SET statement is sorted.

Astounding
PROC Star

Perhaps a smaller issue ...

Your original post asks for count greater than or equal to 3.

gt means "greater than"

ge means "greater than or equal"

Sarvendra
Fluorite | Level 6

Thanks it was just a syntax error of semicolumn Smiley Happy

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!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 6 replies
  • 1688 views
  • 0 likes
  • 5 in conversation