To Chevell Parker/SAS experts.
Hi all, I'm trying to get the Autofilter to function correctly with this tagset. I'm using a single dataset that I'm outputting to HTML with the autofilter feature. The filter drop-down boxes appear on the output but are totally empty. No data from the dataset show so I can't filter.
Does anyone have an idea of what I'm missing here? I'm not too savvy with HTML and the SAS log does not give any clues as to what is happening.
Here's my code.
ODS LISTING CLOSE;
ODS TAGSETS.TABLEEDITOR
FILE="C:\DESKTOP\JUMPSTART\JUMP.HTML"
OPTIONS (AUTOFILTER="YES"
FILTER_COLS="1,2,3,4,5,6,7,8,9,10")
STYLE=STYLES.MYSTYLE;
PROC PRINT DATA=JUMP.JUMPDUMP;
RUN;
ODS TAGSETS.TABLEEDITOR CLOSE;
Any direction would be appreciated.
Thanks Ken.