Creating groups in Domo Cards

Options

We have a quick question using the summary features of the cards. Is there a way to group data elements without creating additional columns in the datatables?

For example if I have Companies A – F in my data table and want to group them:

(Company A, Company B, Company C) = B2B

(Company D, Company E, Company F) = B2C

For summary purposes in a card. Is there a way to do this? Would I use beast mode to create a formula?

Best Answers

  • GrantSmith
    GrantSmith Coach
    Answer ✓
    Options

    You can use a case statement in a beast mode to conditionally bucket your values


    CASE WHEN `Compsny` IN ('A','B','C') THEN 'B2B'
    WHEN `Compsny` IN ('D','E','F') THEN 'B2C'
    END
    
    
    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • MarkSnodgrass
    Answer ✓
    Options

    You could also create groups using Segments. Here's the KB article.

    https://domo-support.domo.com/s/article/4403089503383?language=en_US

    **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