Template word conditional

Hello, I am making a Word template and I need to add a conditional. For example, if an option from a radio button is selected, something appears and if not, something else appears. What is the tag for that?? I have tried using Word’s MERGEFIELD but it doesn’t work

@ManuelP17430260 Can you try this tag in word template

<pegarefconfig={“name”:“.RadioButton”,“type”:“P”,“tValue”:“\u2611”,“fValue”:“\u2612”}>

Below is the example which worked in my scenario for check boxes:

Radio Button is Boolean property

type: “P” indicates Property Reference

\u2611and \u2612 are generic unicodes

This configuration is used to render:

  • :check_box_with_check: when the value is true/selected

  • ☒ when the value is false/unselected

Thanks,

Vikram