No DO loop necessary, the data step loops over observations on its own.
Use a retained variable to keep the start point for each period:
data have;
input account default;
datalines;
12345 2
12345 3
12345 15
12345 16
12345 35
23456 1
;
data want;
set have;
by account;
retain start;
if first.account
then do;
start = default;
output;
end;
else do;
if default gt start + 10
then do;
output;
start = default;
end;
end;
drop start;
run;
No DO loop necessary, the data step loops over observations on its own.
Use a retained variable to keep the start point for each period:
data have;
input account default;
datalines;
12345 2
12345 3
12345 15
12345 16
12345 35
23456 1
;
data want;
set have;
by account;
retain start;
if first.account
then do;
start = default;
output;
end;
else do;
if default gt start + 10
then do;
output;
start = default;
end;
end;
drop start;
run;
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 25. Read more here about why you should contribute and what is in it for you!
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.