Changing Font Color

Good Morning.

 

Is it possible to change the font color of my table if a condition is met using a beast mode.

 

I have something like this

CASE
When `BI_Weight` ='5' then
CONCAT ('<div style="font-color:#A43724">', `ICR_NUMBER`, '</font>')
else `ICR_NUMBER`
end

 

but I only get text. 

Any help would be appreciate it. Thanks

Best Answer

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    Hi @gotex 

     

    The blue text is because you make the text a hyperlink (<a href=...>). If you don't need it to be a hyperlink remove the anchor (<a> & </a>) tags from your text. If you need to have the hyperlink you'll need to add a style to the <a> tag:

    <a href="#" style="color: #bbe491">

    Also make sure you're using an HTML table as not all HTML tags are supported in Mega Tables.

     

    Your second code sample changes the background color of the cell instead of the font color. If you want to change the text color only then you can replace `background-color` with `font-color`.

     

    Going back to your original question - have you confirmed that your `BI_Weight` field is actually returning 5 or could it be a near 5 (like 5.1)?

     

    You may want to make it a bit easier to read and use something like:

    CONCAT ('<div style="font-color:',
      CASE
      When `BI_Weight` ='5' then '#A43724'
      When `BI_Weight` ='4' then '#F1F1F1'
      ELSE ''
      END,
    '">',
    `ICR_NUMBER`,
    '</div>')

     

     

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**

Answers

  • I also try using this formula for another post but I only get a blue text font color.

     

    CONCAT('<div style="background-color:#bbe491; width: 100%; height:100%; margin:-20px; padding:20px"><a href="#">', 'Green Conditional Format', '</a></div>'

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    Hi @gotex 

     

    The blue text is because you make the text a hyperlink (<a href=...>). If you don't need it to be a hyperlink remove the anchor (<a> & </a>) tags from your text. If you need to have the hyperlink you'll need to add a style to the <a> tag:

    <a href="#" style="color: #bbe491">

    Also make sure you're using an HTML table as not all HTML tags are supported in Mega Tables.

     

    Your second code sample changes the background color of the cell instead of the font color. If you want to change the text color only then you can replace `background-color` with `font-color`.

     

    Going back to your original question - have you confirmed that your `BI_Weight` field is actually returning 5 or could it be a near 5 (like 5.1)?

     

    You may want to make it a bit easier to read and use something like:

    CONCAT ('<div style="font-color:',
      CASE
      When `BI_Weight` ='5' then '#A43724'
      When `BI_Weight` ='4' then '#F1F1F1'
      ELSE ''
      END,
    '">',
    `ICR_NUMBER`,
    '</div>')

     

     

    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • Thanks I was not using the HMLT table!

This discussion has been closed.