How to write to display some colored text

Hi @Thibault_Mazur, an easy way to display red text is to use a text component and display as meta text.
Another way is to create a template column, input your HTML and use a rich text component to display it.

For example:

<div style="text-align: center;">
  <span style="font-size: 32px; color: red;">Your Text Here</span>
</div>

Replace “Your Text Here” with your if-then-esle column result.
You can adjust the code as needed.

4 Likes