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)
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.