Colleen Deal Posted October 21, 2022 Share Posted October 21, 2022 When we set up a multiselect OR parameter, every value is automatically checked when the report runs. This is very cumbersome and difficult, especially for parameters with a lot of value options. How can we create a multiselect parameter in which the user selects the values rather than having to deselect them all?This is happening in WF 9Thank you! Link to comment Share on other sites More sharing options...
David Beagan Posted October 21, 2022 Share Posted October 21, 2022 That doesn't seem like something that would normally happen. What tool are you using to create the report, InfoAssist or other? What tool are you using to create your page that prompts for parameters, Designer (Assembel Visualizations)? If you could include the line of code of your report with the parameter variable in question, or just all the WHERE clause. Link to comment Share on other sites More sharing options...
Colleen Deal Posted October 21, 2022 Author Share Posted October 21, 2022 Right now we are testing WF 9 to complete the upgrade and it seems to happening in all of our reports that have a multiselect. They were all created using WF8 or earlier. Some were created with code, others with the designer, and some in InfoAssist. Here is an example of code:WHERE APBCONS_PREF_CLAS EQ &YEAR.(OR(<2024,2024>,<2023,2023>,<2022,2022>)).Year; Link to comment Share on other sites More sharing options...
Martin Yergeau Posted October 21, 2022 Share Posted October 21, 2022 With dynamic parameter list or built in, such as in your sample, I don't think that it's possible.Since ther listed values are "valid / possible" value they are all selected because the reporting "wants to give you all possible data" rather than nothing.If you were designing your own HTML selection screen it would be possible to create a multiselect without any pre-selected value.But since almost anything is possible in WF world, maybe someone will have a diffrent answer for you... Link to comment Share on other sites More sharing options...
Solution David Beagan Posted October 21, 2022 Solution Share Posted October 21, 2022 The only way I can see to make this select all happen automatically is by the following setting in the Adminisration Console, "Preselect all values for static list controls" is checkmarked.I can override this behavior by using a default. For example:-DEFAULT &YEAR = 'FOC_NONE'; Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now