PodiumMason Contributor image

  • Re: Beast Mode Calculated Field

    Hey @user00530, You could do a beast mode: SUM(Case when `Group Name` = 'Income' then `Amount` else 0 END) - SUM(Case when `Group Name` = 'Expense' then `Amount` else 0 END) Best …
  • Re: Secondary Y Axis

    Hey @user02428, Out of the box Domo will allow you to combine metrics with different types on the same graph. YFrom your example, you could put both total impressions and average CTR metrics on a gro…
  • Re: how does stacker work?

    Hi! Sorry to see this never got any replies. I'll give you a bit of insight from my perspective working with stacker. Stacker works well when you have datasets from different sources that contai…
  • Re: New to Domo

    Hi and Welcome to Domo! In the Domo platform itself you'll be using a LOT of SQL. Generally MySQL but also possibly Postgresql/redshift. If you're going to be building Domo apps, web progra…
  • Re: Redshift Date & Time to Date Syntax

    Casting usually works fairly well for true Datetime columns. http://docs.aws.amazon.com/redshift/latest/dg/r_CAST_function.html Example: Cast("Datetime Column" as Date)