Inserting Paragraph Breaks in Word Template
I have a large text field that I've concatenated with another large text field (well, specifically, varchar fields). Anyway, I want to insert paragraph breaks at specific points in this large concatenated field to make it readable. I am trying something like the following:
<?if concat(section_text_part_1,sect_text_part_2) ='point in field where I want the break' then <br></br>........?.>
Of course, I would then keep adding certain points in the big concatenated field where I want a paragraph break. The template builder just ignored my statement above and didn't even display any of the fields. Any help is appreciated.