Hello everyone,
When I'm creating a report in Word and I include a table related to the main object, if there's more than one record, the blocks are duplicated as many times as there are records. How can I resolve this?
Thanks in advance.
Like
Hello,
Thank you for reaching out!
When generating Word reports in Creatio, the behavior you’re seeing is expected — the entire detail block repeats for each related record.
To avoid duplicating the whole block:
Place only the row content (the fields you need to list) inside the {{#Detail}} ... {{/Detail}} section.
Keep your table’s title, headers, and footers outside the detail block.
Example:
Table Header
{{#Detail}}
Table Row with {{Field1}} and {{Field2}}
{{/Detail}}
Table Footer
This way, only the table rows will repeat, while the header and footer appear once.