Does anyone know of how to add a search field in a drop down list in SAS VA? I have a few hundred items for a drop down list and would like for the user to do a search rather than scroll through all if they know exact item. If not, they have the option to scroll through to select what they would like to see. Any help is much appreciated!
Hi!
What you can do is to add a text-input box and assign a parameter to that box.
Then add a filter to your drop down that uses that parameter to filter out values.
In the filter you can use "upcase(var) contains upcase(parm)" to make it possible to search for parts of the value regardless of case.
Hope this helps 🙂
//Fredrik
Thanks! I'll try that out!
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.
Find more tutorials on the SAS Users YouTube channel.