Select to view content in your preferred language

Inserting a Space between Repeat answers on a Report

118
1
03-17-2025 09:25 AM
Cplagge
New Contributor

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!

0 Kudos
1 Reply
TylerGraham2
Frequent Contributor

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}

${/}

0 Kudos