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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ALL in parameter with multiple selection

Status
Not open for further replies.

satinsilhouette

Instructor
Feb 21, 2006
625
Hi,

Need a little help. Usually my 'All' parameters works fine, but I need to be able to pick multiple selections, or just the all.

So here is what I have, I have the allow multiples off for right now, but need to turn it back on.

(
If {?Status} <> "ALL" then
{Table.Status} = {?Status} else
if {?Status} = "ALL" then
true
)

Thanks!

Thanks so much!
satinsilhouette
 
Your current formula should work fine for multiple selections.

-LB
 
you can also use the following formula:
----------------------------
If {?Status} = 'ALL' Then
TRUE
ELSE
{Table.Status} = {?Status}

----------------------------

thanks!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top