Beast Mode Help - Pull Last Day In the Period

Hello DOMO Community,

I have a dataset that keeps a running total of users by day.

I need a beast mode that pulls the last value from the running total column for the filtered period based on date.

EX if the filtered period on a card is 5/25/24-11/16/24 I need the beast mode to return the running total value from 11/16/24.

My hope is for this to be dynamic so that no matter what dates a card is filtered by this formula will always return the last value from the running total column.

Thanks in advance DOMO community!

Tagged:

Best Answer

  • Tyler18702025
    Tyler18702025 Member
    Answer ✓

    For any future DOMOs experiencing this challenge we were able to achieve this using this beast mode:

    MAX(CASE WHEN date field IS NOT NULL THEN running total field END)

Answers