- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
I'd like to know how to permanently remove the horizontal footer line that automatically populates after each PROC in the Results viewer. I've pasted it below (hopefully it is visible):
I've Googled around and can't seem to find a solution, and I'd appreciate any assistance. Thanks.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks, I found the code that worked:
proc template;
define style styles.nobreak;
parent=styles.default;
style body from body /
pagebreakhtml=_undef_;
end;
run;
ods html file="temp.html" style=styles.nobreak;
Unfortunately for some reason the background colors of the graphs I output turned gray; I added "styleattrs backcolor=white wallcolor=white;" to the proc sgplot to turn them back to white.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Whatever you pasted, I cannot see.
The hash OUTPUT method will overwrite a SAS data set, but not append. That can be costly. Consider voting for Add a HASH object method which would append a hash object to an existing SAS data set
Would enabling PROC SORT to simultaneously output multiple datasets be useful? Then vote for
Allow PROC SORT to output multiple datasets
--------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Okay . . . I'm not sure how to describe this any better than I already have.
It's the horizontal footer line that shows up in the Results output after each PROC. If you have ever run multiple PROCs, you will see it in the Results viewer clearly.
Maybe the below image will clarify (the circled line):
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
https://support.sas.com/resources/papers/proceedings/proceedings/sugi31/091-31.pdf with a PROC TEMPLATE method shown on page 2.
Cynthia
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks, I found the code that worked:
proc template;
define style styles.nobreak;
parent=styles.default;
style body from body /
pagebreakhtml=_undef_;
end;
run;
ods html file="temp.html" style=styles.nobreak;
Unfortunately for some reason the background colors of the graphs I output turned gray; I added "styleattrs backcolor=white wallcolor=white;" to the proc sgplot to turn them back to white.