Hello,
I'm using the awesome tagsets.tableeditor in ODS. I've been away from SAS for a while, and really like what I'm seeing here.
So I'm setting up autofilters with the code below, and I'm wondering, can I make the filters fancier, like by allowing multi select (hold down control or shift)? Of can I make filters that let us user > or < or between operators?
Appreciate any advice here. Thanks!
ods tagsets.tableeditor file="E:\test.html"
options(sort="yes"
sort_underline="no"
exclude_summary="yes"
describe="yes"
autofilter="yes"
autofilter_width="7em"
autofilter_table="1"
) style=styles.mystyle ;
Hi:
If you add doc='Help' to your list of suboptions, you will see all the suboptions that are allowed with this destination. They will be displayed in the SAS log. If there is not enough detail in the log about using the autofilter-related suboptions, then you might want to open a track with Tech Support. Basically, your new code would look like this:
ods tagsets.tableeditor file="E:\test.html"
options(sort="yes" doc="Help"
sort_underline="no"
exclude_summary="yes"
describe="yes"
autofilter="yes"
autofilter_width="7em"
autofilter_table="1"
) style=styles.mystyle ;
cynthia
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.