Jan 14, 2004 #1 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 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
Jan 14, 2004 #2 MColeman Programmer Sep 23, 2002 242 If ?Region is your parameter, use Count({?Region}) You could also create a comma separated list of the values entered with Join({?Region}), ',') Upvote 0 Downvote
If ?Region is your parameter, use Count({?Region}) You could also create a comma separated list of the values entered with Join({?Region}), ',')
Jan 14, 2004 Thread starter #3 Baylor03 Programmer Oct 3, 2003 9 US Thanks. I will try that Upvote 0 Downvote
Jan 14, 2004 #4 Ngolem Programmer Aug 23, 2001 2,724 CA 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! Upvote 0 Downvote
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!