Create a calculated column using beast mode

Aloha:

 

I would like to calculate the following using beast mode, having the results in a new column.

Example:

column name: Start Date "9/1/2019"

column name: Days Ago "2"

If column "days ago" has a number in it, then take the date in the "start date" column and subtract it from the number in column "days ago"; resulting in the new "activity date". 

If column "days ago" is null (has no data), the result is: "start date"

New column is: Activity Date

 

Any assistance is greatly appreciated.

 

 

Best Answer

  • GrantSmith
    GrantSmith Coach
    Answer ✓

    Another option (assuming it will be either a number or null) is to utilize COALESCE or IFNULL function:

     

    DATE_SUB(`Start Date`, interval COALESCE(`Days Ago`, 0) day)
    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**

Answers

  • You could do this a couple different ways, but here is one for you:

    CASE WHEN 'Days Ago' >= 1 THEN
         DATE_SUB('Start Date', interval 'Days Ago' day)
    ELSE
        'Start Date'
    END

     

    Hope this helps. 

    **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.
  • GrantSmith
    GrantSmith Coach
    Answer ✓

    Another option (assuming it will be either a number or null) is to utilize COALESCE or IFNULL function:

     

    DATE_SUB(`Start Date`, interval COALESCE(`Days Ago`, 0) day)
    **Was this post helpful? Click Agree or Like below**
    **Did this solve your problem? Accept it as a solution!**
  • Hello @Hulachic5 & @MarkSnodgrass ,


    I love the work you've done with Beast Modes. I'm happy to let you know we have just released Code Block apps in our Domo Appstore. These allow customers and Domo experts such as yourself, to publish code blocks like the ones you've created for distribution in the Appstore. The publish process for the code blocks is currently in an early beta. If you are interested in publishing your code blocks, let me know and we can enable it for you.

     

    Cheers,


    Cody Smith

    Director of Product, Domo

  • Thanks a million. It truly made a difference.

     

    Have an AWESOME Day!.

     

    SPM