Beast Mode

How do i do a beast mode formula to get the response value of a record that was completed most recently? If this is my data i want to just take the bottom row. My groupings cant be changed in magic etl just need to take response value with highest or most recent time
Name | Location | Time | Response value |
---|---|---|---|
Ben | A | 2:07PM | 5 |
John | A | 3:55PM | 15 |
Best Answers
-
A couple of solutions using Magic ETL - 1) Use a window function to rank the records in descending time, then look for rank 1 in your card; 2) Do a group by to find the max time, then cross join that back to your data so that you can find the most recent time in a beast mode, where the Time field equals the Max Time field.
Maybe there's a way to do this with a fixed function beast mode, but I'm not certain.
0 -
Create a beastmode and use it as a filter:
CASE WHEN `Time` = MAX(`Time`) THEN 'In' ELSE 'Out' END
Not sure what format your time field is in, but you'll need to make sure it is in a datetime format for this to work.
If I solved your problem, please select "yes" above
0 -
Hey TMonty,
You will need to create a conditional column:
case when `timestamp` = max(`timestamp`) over() then 'Yes' else 'No' end
However, this will require that you have a timestamp column.
If you do not have a timestamp column, you can make one by appending the date and time columns and converting to timestamp format.
1
Answers
-
A couple of solutions using Magic ETL - 1) Use a window function to rank the records in descending time, then look for rank 1 in your card; 2) Do a group by to find the max time, then cross join that back to your data so that you can find the most recent time in a beast mode, where the Time field equals the Max Time field.
Maybe there's a way to do this with a fixed function beast mode, but I'm not certain.
0 -
Create a beastmode and use it as a filter:
CASE WHEN `Time` = MAX(`Time`) THEN 'In' ELSE 'Out' END
Not sure what format your time field is in, but you'll need to make sure it is in a datetime format for this to work.
If I solved your problem, please select "yes" above
0 -
Hey TMonty,
You will need to create a conditional column:
case when `timestamp` = max(`timestamp`) over() then 'Yes' else 'No' end
However, this will require that you have a timestamp column.
If you do not have a timestamp column, you can make one by appending the date and time columns and converting to timestamp format.
1 -
Once your conditional column has been created, you can filter to only include the 'Yes' values, which will have only the most recent response for that category
0
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Connect
- 1.3K Connectors
- 309 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 663 Datasets
- 119 SQL DataFlows
- 2.3K Magic ETL
- 823 Beast Mode
- Visualize
- 2.6K Charting
- 86 App Studio
- 46 Variables
- Automate
- 193 Apps
- 483 APIs & Domo Developer
- 87 Workflows
- 23 Code Engine
- AI and Machine Learning
- 23 AI Chat
- 4 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 117 Domo Everywhere
- 283 Scheduled Reports
- 11 Software Integrations
- Manage
- 143 Governance & Security
- 11 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 116 Community Announcements
- 5K Archive