I want to create a variable who goes frome 1 to 12 based on the date of a test (like first test of the year, second test of the year etc) Here is a little example of what I want it to look like:
Can be solved by sorting data by Cow and JR_Test and a datastep with first and retain to create no_test.
data want;
set have_sorted;
by Cow;
length no_test 8;
retain no_test;
if first.Cow then no_test = 0;
no_test = no_test + 1;
run;
The code is untested, because you haven't provided data in usable form.
Register Today!
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.