I have a few parameter fields in my report that have an "All" option. I would like to have my selection criteria based off of the field but it should not filter anything if "All" is selected but I am having trouble getting the results i want. Here is what i have
parameter field {?Division}
values "All","CB","CM"..etc
DB field {USERINFO.DIVISION}
(
if {?Division} = "All"
Then
{USERINFO.DIVISION} = "*"
else
{USERINFO.DIVISION} = {?Division}
)
This does not work as i get no results in my report.
Thanks for the help
parameter field {?Division}
values "All","CB","CM"..etc
DB field {USERINFO.DIVISION}
(
if {?Division} = "All"
Then
{USERINFO.DIVISION} = "*"
else
{USERINFO.DIVISION} = {?Division}
)
This does not work as i get no results in my report.
Thanks for the help