Beast Mode

Beast Mode

Beast Mode - Color Coding

I am trying to do a beast mode with HTML code for if the Variance > Schedule, then make it red.

The hiccup I am running into is that Variance and Scheduled are both already beast mode calculations, not natively in the ETL. So how can I do the HTML coloring beast mode case when statement when both items are beast mode calculations themselves so that I keep the calculations in there to still have Variance calculated properly?

Any suggestions?

Best Answer

  • Answer ✓

    You would just expand your beast mode to include the logic to color your values

    Here is an example of how you would do your variance beast mode:

    1. CONCAT('<div style=color:',
    2. CASE WHEN SUM(NumberOfVisits) + SUM(Activities) > 0 THEN 'green'
    3. ELSE 'red'
    4. END,'>',
    5. SUM(NumberOfVisits) + SUM(Activities),
    6. '')
    **Check out my Domo Tips & Tricks Videos

    **Make sure to <3 any users posts that helped you.
    **Please mark as accepted the ones who solved your issue.

Answers

  • Answer ✓

    You would just expand your beast mode to include the logic to color your values

    Here is an example of how you would do your variance beast mode:

    1. CONCAT('<div style=color:',
    2. CASE WHEN SUM(NumberOfVisits) + SUM(Activities) > 0 THEN 'green'
    3. ELSE 'red'
    4. END,'>',
    5. SUM(NumberOfVisits) + SUM(Activities),
    6. '')
    **Check out my Domo Tips & Tricks Videos

    **Make sure to <3 any users posts that helped you.
    **Please mark as accepted the ones who solved your issue.

Welcome!

It looks like you're new here. Members get access to exclusive content, events, rewards, and more. Sign in or register to get started.
Sign In