Skip to main content
Nintex Community Menu Bar
Solved

Generate a Document - Formatting tags

  • September 1, 2021
  • 2 replies
  • 109 views

SClacherty
Forum|alt.badge.img+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'.

Best answer by butlerj

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

2 replies

butlerj
Nintex Employee
Forum|alt.badge.img+20
  • Nintex Employee
  • Answer
  • September 2, 2021

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


Forum|alt.badge.img+6
  • December 15, 2021

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.