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

number of parameters entered

Status
Not open for further replies.

Baylor03

Programmer
Oct 3, 2003
9
US
if you have a parameter and more than one value can be entered, is there a way to tell how may values have been entered?

Thanks for your help
 
If ?Region is your parameter, use

Count({?Region})

You could also create a comma separated list of the values entered with

Join({?Region}), ',')
 
This type of parameter is an array so using

ubound({?Parameter})

will get the value you want

Jim Broadbent

The quality of the answer is directly proportional to the quality of the problem statement!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top