Coloring fields in data chart table

Is there any way where i can do like if column A value matches column B value then make that column A value color red.

 

Thanks in advance.

Best Answer

  • Tomo
    Tomo Contributor
    Answer ✓

    Please put the created BEAST MODE as a table column.

     

    ===

    作成したBEAST MODEを表のカラムとして置いてください。

Answers

  • Tomo
    Tomo Contributor

    BEAST MODE A_color

    concat(
    '<div style="color:#',

    case
    when `A` = `B` then 'ff0000'
    else '000000'
    end,

    ';">',
    `A`,
    '</div>'
    )
  • Hello. Thanks for the reply. I created this beast mode for two columns. How should i implement on the card? Waht should be the next step after creating a beast mode?

  • Tomo
    Tomo Contributor
    Answer ✓

    Please put the created BEAST MODE as a table column.

     

    ===

    作成したBEAST MODEを表のカラムとして置いてください。

  • Thanks.

This discussion has been closed.