Solved

Generate a Document - Formatting tags

  • 2 September 2021
  • 2 replies
  • 21 views

Badge +1

Is there a way to format the Yes/No tag so that it is displaying "Yes" or a tick... or a ticked yes box instead of 'true'.

icon

Best answer by butlerj 2 September 2021, 18:57

View original

2 replies

Userlevel 5
Badge +19

@SClacherty you could try the conversion technique that works with Drawloop: https://help.nintex.com/en-US/docgen/docservices/#docgen-sfdc/Services/templates/ConditionalTextWord.htm?Highlight=word%20formulas I'm not 100% sure if that will work with the NWC DocGen service though as the API is a little different than the native tool.

Badge +6

I just create a text variable in my form, then use an ifElse to set the variable to Yes or No, like this:


 
ifElse([Form].[SpConYN],"Yes","No")
 
Then when I tag the document, I use the variable instead of the Yes/No field tag. It's a lot easier to see and manage than using the Word field codes and formulas.



Reply