I'm receiving the following error for the code above:
31 format incdt mmddyy10.;
32 incmonthid = YEAR(disdt_c)*100+MONTH(disdt_c);
33 yr = YEAR(disdt_c);
34 end;
___
161
35 else do;
____
160
ERROR 161-185: No matching DO/SELECT statement.
ERROR 160-185: No matching IF-THEN clause.
Not sure what the issue is.
ELSE can only be used as the second branch of an IF statement.
To me it seems your code misses
if /* condition */
then do;
before
incmonthid = YEAR(disdt_c)*100+MONTH(disdt_c)
What it says. A END ends a block that starts either with DO or SELECT.
Please post your complete data step code so we can correct it.
ELSE can only be used as the second branch of an IF statement.
To me it seems your code misses
if /* condition */
then do;
before
incmonthid = YEAR(disdt_c)*100+MONTH(disdt_c)
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.