Exporting a Rich Text custom field to a Word Template Document | Community
Skip to main content
FrankatMSC
Level 4
September 26, 2025
Question

Exporting a Rich Text custom field to a Word Template Document

  • September 26, 2025
  • 1 reply
  • 340 views

I'm working on a scenario to export one of our forms to a Word template document.    It's was working pretty nicely until it came to one of the custom fields that contains rich text.  
Is there a way to have the rich text export to the Word Template as it is coded?  If not, I know it is JSON coding, and I am trying to parse it so it can be removed but how can I then combine
all the collections into one variable so it can all be exported to Word as one field?

Thanks in advance!!

1 reply

Kurt_Jones
Community Advisor
Community Advisor
October 6, 2025

Hi Frank,

You'll still need to parse the JSON from the rich text field and you can use the text aggregator to just get the text part of the RTF field so you have it for your Word doc.  I think I'm following your question, hopefully.  See below, I have a scenario where I need to get the text from an RTF field mapped to a field in a Word template I was using and did the following below.  I believe you should be able to do the same thing using a variable in place of the text aggregator OR you could write the output of this text aggregator to variable, if needed.

 

 

If my response answered your question, please mark it answered, so others can find the answer
FrankatMSC
Level 4
October 6, 2025

Thank you @kurt_jones .  Very simple solution.