BookmarkSubscribeRSS Feed
JohnC_Munoz
Calcite | Level 5

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 ;

1 REPLY 1
Cynthia_sas
Diamond | Level 26

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

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1165 views
  • 0 likes
  • 2 in conversation