Beast mode calculation for aggregating data
Hi,
I have a numeric field called "days until due" which contains negative numbers for outstanding items from -1 to -100. I am trying to group these using a beast mode calc. but keep getting syntax errors. For example, when "days until due" is from -1 to -9 days I want it to be grouped as "1-9 days", -10 to -19 days would be "10 to 19 days". The idea is to group these and sum the value for the range and chart it.
Can anyone please suggest a beast mode calc. that works?
Cheers
Best Answer
Answers
-
Hi @Lashes
You can use some simple math to convert your negative number to a positive one and some trickery with the FLOOR and CEILING functions to get bands of 10.
CASE WHEN `days until due` * -1 > 60 THEN '60+ days' CASE WHEN `days until due` >= 60 THEN '-60+ days' ELSE CONCAT(FLOOR(`days until due` / -10) * 10, '-', (FLOOR(`days until due` / -10) * 10 + 9), ' days') END
To explain a bit further:
`days until due` / -10
Calculates a 10s bucket and inverses your negative number to a positive number
FLOOR(`days until due` / -10)
FLOOR returns a decimal without the decimal places (1.9 -> 1)
We then multiply it by 10 to convert back to 10s, this will give us the lower end of the bucket.
We do the same thing for the higher end of the bucket but also add 9 to it so it'll end up being 19 instead of 10 for example.
I just chose a lower threshold of -60. If you have positives you'll need to put another condition right after the first one to bucket those - just don't multiply by -1.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**2
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.6K Connect
- 1.2K Connectors
- 302 Workbench
- 6 Cloud Amplifier
- 9 Federated
- 2.9K Transform
- 104 SQL DataFlows
- 633 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 760 Beast Mode
- 62 App Studio
- 42 Variables
- 699 Automate
- 181 Apps
- 457 APIs & Domo Developer
- 51 Workflows
- 10 DomoAI
- 38 Predict
- 16 Jupyter Workspaces
- 22 R & Python Tiles
- 401 Distribute
- 116 Domo Everywhere
- 277 Scheduled Reports
- 8 Software Integrations
- 130 Manage
- 127 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 12 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 111 Community Announcements
- 4.8K Archive