I use to use a shortcut key where I could clear the log and Sas Output window at once.
F12 clear log; clear output;
Now under 9.3 this won't clear the output. Any suggestions?
There are a few notes here:
http://support.sas.com/kb/43/911.html
Especially Edit->Clear All might be the ticket for you...
See also How to clear the output window in SAS 9.3.
You can assign whatever you want to the function keys. Take a look at: http://www.listserv.uga.edu/cgi-bin/wa?A2=ind0611A&L=sas-l&P=R15774&D=1&H=0&O=D&T=1
That worked in 9.2. I can't find a command to clear what they now call the Results Viewer in 9.3
ODSRESULTS;CLEAR But there are new factors they introduced as well. Take a look at: http://support.sas.com/kb/43/911.html
Close. this clears the results log but not the Viewer.
Did you add the statement as recommend in the TN, ie: ods html newfile=proc
There must be a way to string everything together and assign the bundle to a function key. I'm not on 9.3 yet, thus can't test it.
Yes, I know that a number of folks are going to be unpleasantly surprised.
I put this in the top of my programs, based on this thread...(not sure if it goes in a function key). Seems to do the trick...
ods html close;
DM log "OUT;CLEAR;LOG;CLEAR;" log continue ;
DM log 'next results; clear; cancel;' whostedit continue ;
ods html newfile=none;
Worked like a charm
dm 'odsresults; clear';;
If you want to clear the results viewer before you rerun your SAS-program, then simply put
ods html close ;
ods html ;
in the beginning of the program.
Hi:
I wrote a paper for SGF that outlines at least 4 ways to work with the new behavior in SAS 9.3. In my opinion, the best method is to use the "full control" method instead of a cumulative file. Of course, I like to name my files, so I'm a bit particular about where output goes and what it's named. But I do show 4 basic alternatives in the paper and, of course, there are other combos of commands, settings that will work.
The key thing to remember about the Results Viewer and 9.3 is that with HTML turned on automatically, a cumulative HTML file is created, unless you control it otherwise. While the HTML file is open for receiving output, you can clear the links/pointers that appear in the Results Viewer window, but you cannot "empty" the HTML file itself without taking some controlling action. Here's the link to the paper:
http://support.sas.com/resources/papers/proceedings12/250-2012.pdf
cynthia
I have been using
ods html close;
ods html;
and it works fine, except for one thing. Before running that code, the results viewer refreshes every time a procedure is run. However, after running that code (closing the html file and opening the new one), I have to manually refresh the results viewer by clicking view > refresh. Is there a way to get SAS to automatically refresh the results viewer window like it did before I created the new html file?
I am using SAS 9.3 TS Level 1M0.
There are a few notes here:
http://support.sas.com/kb/43/911.html
Especially Edit->Clear All might be the ticket for you...
See also How to clear the output window in SAS 9.3.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.