Hi,
I want to create a variable that enumerate each observation with one defined condition("Yes")
I have tried _N_ but nedd to add a if/where clause but this is not possible.
I want my table to look like this (a new count when New event="Yes") and if possible a retain for the last Count when New event="No"
Id New event counter
1 Yes 1
1 Yes 2
2 Yes 3
2 No 3
2 No 3
2 No 3
2 Yes 4
3 Yes 5
Thanks
Thomas
if 'new event'n eq 'Yes' then counter + 1;
if 'new event'n eq 'Yes' then counter + 1;
Brilliant, Thanks!!
/Thomas
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.