Find Most Recent Date
Hey all, I am trying to find a way to locate the most recent date in a table based on rows of multiple columns. In other words, given a single case with variables X1, X2 and X3 I want the beastmode to find the latest date. So if column 1 was 1/1/2015, column 2 was 2/2/2014 and column 3 was 5/1/2016 then the calculation would return 5/1/2016.
Thanks all!
Best Answer
-
Oh yeah, that's a different story. Two dozen columns would be a nightmare with what I suggested.
The SQL function GREATEST() would probably work well in this case but BeastMode doesn't have that function that I'm aware.
What's your use case, just finding a max value from an entire dataset? (try using a SQL dataflow with GREATEST)
Or max value from any number of dimensional breakdowns that might be chosen with a card filter? (not sure what to do there but you'd need a BeastMode)
Aaron
MajorDomo @ Merit Medical
**Say "Thanks" by clicking the heart in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0
Answers
-
I'd suggest doing something like max(max(x1),max(x2),max(x3)), but I don't think beastmode max functions will allow that.
Can you do a case statement with boolean?
case
when max(x1) >= max(x2) and max(x1) >= max(x3) then max(x1)
when max(x2) >= max(x1) and max(x2) >= max(x3) then max(x2)
when max(x3) >= max(x1) and max(x3) >= max(x2) then max(x3)
endSeemed to work for me when I tested it.
Aaron
MajorDomo @ Merit Medical
**Say "Thanks" by clicking the heart in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"1 -
Yes, however I was hoping for a more elegant solution because I have about two dozen columns that I need to check against.
0 -
Yes, I am simply trying to find the most recent date from a table. I think a SQL dataflow would work. Thanks.
0 -
For the non-SQL people like me....
Collapsing all date columns into a single column using ETL, then applying a MAX in ETL or beastmode should also do the trick
2
Categories
- 7.7K All Categories
- 3 Connect
- 919 Connectors
- 244 Workbench
- 477 Transform
- 1.8K Magic ETL
- 60 SQL DataFlows
- 446 Datasets
- 37 Visualize
- 198 Beast Mode
- 2K Charting
- 8 Variables
- 1 Automate
- 348 APIs & Domo Developer
- 82 Apps
- Workflows
- 14 Predict
- 3 Jupyter Workspaces
- 11 R & Python Tiles
- 241 Distribute
- 59 Domo Everywhere
- 241 Scheduled Reports
- 15 Manage
- 36 Governance & Security
- 27 Product Ideas
- 1.1K Ideas Exchange
- Community Forums
- 14 Getting Started
- 1 Community Member Introductions
- 49 Community News
- 18 Event Recordings
- 579 日本支部