Skip to main content

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'.

@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.


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