Does anyone else have this problem? Basically, sometimes when I write a macro and run the code, nothing happens. The log just writes the code you tried to execute in black but it's like SAS is disabled and you have to turn off SAS and turn it back on before it runs properly again. Is there a way around this without having to turn off and on sas.
You have some open string or definition, or an unclosed comment. SAS waits for this to "finish".
Inspect the code/log you submitted before this happened.
An additional possibility: an unfinished macro definition (missing the %mend statement). At any rate, here is a string you can submit that will close most (possibly all) of these types of problems without getting out of SAS:
*);*/;/*'*/ /*"*/; %MEND;run;quit;;;;;
Good luck.
Be very careful with comments as the macro processor doesn't like the *line of code; comments.
If you are using those change them to %* code; So the macro processor knows they are comments.
Also, as much as practical, start small and add pieces. If your think your data is too large for this to run due to length of processing then make a smaller data set with the key elements and just a few records or use the system option OBS to set a number of records to process.
Spelling counts.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.