Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Param Help

Status
Not open for further replies.

fmrock

Programmer
Sep 5, 2006
510
US
I have the a Param called "Group"

In the select Expert I do the following code.

Code:
(
if ucase({?Group}) <> "ALL" then
    {SG_LOGS.GROUPID} = {?Group} else
if ucase({?Group}) = "ALL" then
    true
)

This way the user call pull all Groups back into the report.

The user is wanting to enter 1 group, Multiple groups, or get all groups.

If I updated the param to allow mulitple values, how would i update the formual in my select expert.

if I do it now, its asking me to subscript the array, but I cant seem to get it to work any of the ways I tried.

Any help would be great.

Thanks.
 
The problem is with the ucase()--otherwise your formula should work, so my question is whether you could be building "All" into a picklist, so that it is in a standard case.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top