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

Hi, this is probably an easy question, am looking to add a cumulative  # of days a student made a mistake, and this resets to 0 when the student stop making mistakes. I have created a simple table to further illustrate my needs.

DateMistake_FlgDays_Mistake_Streak
1-Jan00
2-Jan00
3-Jan11
4-Jan12
5-Jan13
6-Jan00
7-Jan00
8-Jan11
9-Jan12
10-Jan00

Where "Days_mistake_streak" is what I'm trying to derive.

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

You could use something like:

data want;

  set have;

  retain Days_Mistake_Streak;

  Days_Mistake_Streak=ifn(Mistake_Flg eq 0,0,Days_Mistake_Streak+1);

run;

View solution in original post

2 REPLIES 2
art297
Opal | Level 21

You could use something like:

data want;

  set have;

  retain Days_Mistake_Streak;

  Days_Mistake_Streak=ifn(Mistake_Flg eq 0,0,Days_Mistake_Streak+1);

run;

sweetgorgor
Calcite | Level 5

worked like a charm, thanks so much Arthur!

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

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
  • 1158 views
  • 1 like
  • 2 in conversation