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!
Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.
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.