Display boolean as yes/no in front end

Hey!
I have this boolean, and I want to display it’s value as a “Yes” or “No” in the data grid in the front-end.

Right now it looks like this in the front end:

So, instead of this box, I want the word “No” or “yes” to be displayed.

How can I do that?

Create an if-then-else column:

  • If boolean is checked, then Yes
  • Else No

Then display the if-then-else column instead of the boolean.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.