How can I give user the option to select ' ALL' in the parameter prompt? Instead of selecting multiple routes, I want the user to be able to select "ALL" routes.
Thanks for any suggestions.
Rather than using an If-Then-Else statement in the Record Selection formula, I prefer to take the following approach which I have found is more likely to get passed into the SQL Select statement (depending on data source) and therefore improve efficiency):
Code:
(
{?Route} = "ALL" or
(
{?Route} <> "ALL" and
{yourRouteField} = {?Route}
)
)
User still cannot see the keyword " ALL" in the dynamic prompt list menu option. Do I have to create a SQL Command query that grabs all values and the keyword " ALL"?
Or is there another way to get the keyword " ALL" to display in the dynamic prompt list menu option?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.