What portion of that is a parameter?
You can reference parameters in formulas as in the following.
Return a single descrete value:
{?parm1}
Return the first value in a multi value parameter:
{?parm1}[1]
Display all of the values selected in a multi value parameter, delimited by a comma:
join({?parm1},", "
Iterate through the values of a multi value parameter:
whileprintingrecords;
numbervar counter :=0;
stringvar Result := "";
for counter := 1 to ubound({?parm1}) do(
if {?grp}[counter] = "US" then
Result := "US was chosen"
);
Result
The above would return "US was chosen" if any of the values = "US"
Any of the above can be referenced within formulas.
Hope this resolves. If not, provide example data, and expected output, someone can probably provide a more tailored solution.
-k