Show parameters
We have a report where users pick multiple parameters.
I'd like to print what parameters they chose, obviously if I just put the parameter field in the footer it only shows one parameter. How can I get it to show all that wre chosen?
Zane Gibson replied
Hi zeb,
It's pretty simple. First you need to create a formula field. Paste the following code into the formula editor.
Join ( {?Parameter} , ', ' )
This function separates all value with a comma.