I have searched and not able to find my specific delima.
Have a parameter field that uses id number to pull data, have a description from another table for user to select from as they do not know the id's.
I would like to have a field that lists the names of the multiple parameters not just value. I can display the actual value using the following however would like to display the names.
local numbervar i;
local stringvar concate;
concate := "";
//loop through the multivalue parameter
for i := 1 to count({?Admin Name}) do
//concatenate the current value to a string separated by commas. If it's the last value, don't add a comma.
concate := concate + totext({?Admin Name}) + iif(i = count({?Admin Name}),"",", ");
concate