Hello,
I am trying to display a space between repeat answers on my Word document report. Here is the code currently;
${#group_capacity}${liquid_capacity}${/} |
Right now it will display my values with no separation, so they all appear as one long numeric value (1,5002,1501,650 for example). I want it to display 1,500 2,150 1,650
Any help will be much appreciated.
Thank you!
Sometimes the report template is finicky with how it likes things formatted. I think if you put a space between ${liquid_capacity} and ${/} that should do it. Also putting ${liquid_capacity} on its own line might work too, though it might put each value on a new line instead.
${#group_capacity} ${liquid_capacity} ${/} |