BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Tom
Super User Tom
Super User

Is the problem reproducible? 

If so then just ask your data step to show you the records where you are seeing the skip.

Note: Do NOT overwrite your input as it will make debugging very hard.

data WANT;
  set have;
  retain t 0;
  select;
    when (amount NE 0) t=t+1;
    otherwise;
  end;
  if t in (3615 3616 119401 119402) then put _all_ ;
run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 15 replies
  • 2498 views
  • 5 likes
  • 6 in conversation