Sorting Beast mode

Hello! I'm trying to sort my beast mode where I'm normalizing my data to trend performance by the first month it's published and trending for a year since all my rows of data will have different dates in which they are published. The issue I'm running into is I can't sort the beast mode in order of Month 1, Month 2, etc. But it keeps sorting by Month 1, Month 10, Month 11, Month 12, Month 2, etc. Here is a snippet of the beast mode language and below is a screen shot of the visual. Thanks in advance for any help!
when DATEDIFF(date
,published_date
) >0 and DATEDIFF(date
,published_date
) <=29 then '1 Month'
when DATEDIFF(date
,published_date
) >29 and DATEDIFF(date
,published_date
) <=59 then '2 Months'
Best Answers
-
Add a new beastmode to put into your sorting:
when DATEDIFF(
date
,published_date
) >0 and DATEDIFF(date
,published_date
) <=29 then 1
when DATEDIFF(date
,published_date
) >29 and DATEDIFF(date
,published_date
) <=59 then 2etc…
If I solved your problem, please select "yes" above
1 -
@cmarino The reason it's sorting like that is because the beast mode is being sorted as text and not a number. You could either add a leading 0 to your labels (i.e. 01 Month, 02 Month, etc.) or create a second beast mode with a formula of
DATEDIFF(date,published_date)
to use as your sort field.1
Answers
-
Add a new beastmode to put into your sorting:
when DATEDIFF(
date
,published_date
) >0 and DATEDIFF(date
,published_date
) <=29 then 1
when DATEDIFF(date
,published_date
) >29 and DATEDIFF(date
,published_date
) <=59 then 2etc…
If I solved your problem, please select "yes" above
1 -
@cmarino The reason it's sorting like that is because the beast mode is being sorted as text and not a number. You could either add a leading 0 to your labels (i.e. 01 Month, 02 Month, etc.) or create a second beast mode with a formula of
DATEDIFF(date,published_date)
to use as your sort field.1 -
Thank you MichelleH and Colemenwilson! I wanted to keep the 'month' reference in the naming so adding the '0' before the numbers worked great. Thanks for the advice!
1
Categories
- All Categories
- 2K Product Ideas
- 2K Ideas Exchange
- 1.6K Connect
- 1.3K Connectors
- 308 Workbench
- 6 Cloud Amplifier
- 10 Federated
- 3.8K Transform
- 660 Datasets
- 117 SQL DataFlows
- 2.2K Magic ETL
- 815 Beast Mode
- 3.3K Visualize
- 2.5K Charting
- 84 App Studio
- 46 Variables
- 780 Automate
- 191 Apps
- 482 APIs & Domo Developer
- 84 Workflows
- 23 Code Engine
- 41 AI and Machine Learning
- 20 AI Chat
- 1 AI Playground
- 2 AI Projects and Models
- 18 Jupyter Workspaces
- 413 Distribute
- 121 Domo Everywhere
- 281 Scheduled Reports
- 11 Software Integrations
- 145 Manage
- 141 Governance & Security
- 8 Domo Community Gallery
- 49 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 115 Community Announcements
- 4.8K Archive