Hello everyone,
Is that possible to close a data step window automatically by sas code?
Thanks
Mike
data _null_; window test irow=35 icolumn=3 rows=10 columns=60 #3 "This window will be closed in 10 seconds automaticaly!"
; display test blank; stop; run;
Try this:
data _null_;
window test irow=35 icolumn=3 rows=10 columns=60
#3 "This window will be closed in 10 seconds automaticaly!"
;
display test blank NOINPUT;
rc=sleep(10);
stop;
run;
The SLEEP function will also display another window but you can use the NOSLEEPWINDOW option when you start SAS to turn this off.
April 27 - 30 | GAYLORD TEXAN
Register now to lock in early bird pricing through February 25!
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.
Browse our catalog!