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

 

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. 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

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)

View solution in original post

4 REPLIES 4
bknitch
Quartz | Level 8
I've edited the post to reflect the entire code
Kurt_Bremser
Super User

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)
bknitch
Quartz | Level 8
@kurtbrmser this actually was the solution! Thank you i just placed it in the incorrect spot.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1714 views
  • 0 likes
  • 2 in conversation