Hello,
I have two questions in regards to adding gridlines to a specific style. I have been using the style sasweb for some reporting, and I would like to retain everything about that style with the caveat that I want the gridlines to be shown in all tables/reports instead of the classic all white background that it currently shows. I tried the code below, and it does successfully show gridlines, but doesn't retain the rest of SASWEB formatting.
My second question is, the code below overwrote the old sasweb formatting. Is there any way to restore the styles. library?
Thank You.
proc template;
define style Styles.sasweb;
parent=styles.excel;
class body / background=_undef_;
end;
run;
ods excel file="test"
options(sheet_name="Test")
options(sheet_interval="PROC"
embedded_titles="yes"
embedded_footnotes="yes"
embed_titltes_once="yes")
style=sasweb;
... View more