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

Display Multiple Values from Parameter

Status
Not open for further replies.

qcman

Technical User
Jul 20, 2004
30
0
0
US
I have a parameter that allows for multiple values. I want to add this to my title. For example my parameter is either A or B or Both. If a user selects A then A should be in the title. How do I create a title that shows a user as entered in Both (A&B)?
 
Assuming this is a string parm, I think you could just use:

(
if ubound({?parm}) = 2 then
"Both" else
{?parm}[1]
)

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top