How do I handle NULL tokens

Hello, I have Plumsail form connected to Airtable. I'm using dropdown to select an age value. The dropdown is not required for selection. If user selects a value then it shows up in the Plumsail Doc with the selected value. If the user doesn't make a selection, it just shows the token name instead. How do I show blank?

I tried using:
{{#hide-if EmotionAngerAge == null}} {{EmotionAngerAge.name}}

it hides the whole Anger table row but i just want it to show blank.

Never mind. I got it to work:

{{#if EmotionAngerAge != null}}
{{EmotionAngerAge.name}}
{{/if}}

1 Like

Great that you could make it work!

For more information, you can check the documentation page.

1 Like