Hello,
I'm trying to test something very basic.
options nocenter source2 mlogic symbolgen nomprint
%let unix_out = abc;
%put unix_out;
when I run this, I get this in the log window and nothing else
1 The SAS System 14:34 Wednesday, April 17, 2019
1 %_eg_gridprologue;
NOTE: Remote submit to GRID commencing.
NOTE: Remote submit to GRID complete.
2 %_eg_gridclientepilogue;
3 %let _EGRC=&_EGRCGRID;
4
Appreciate any help!
Classic missing semicolon:
options nocenter source2 mlogic symbolgen nomprint; * <=== semicolon here;
%let unix_out = abc;
%put &unix_out;
I added the semicolon, thank you.
But I don't see any output still.
I've tried the following to see if any of these might work, but they didn't
%put &unix_out.;
%put unix_out;
%put &unix_out;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.