Can you create a beastmode CASE when for values between two numbers?
I'm looking at influencers and their number of followers and want to group the data:
number of follower: 1-50000, 50000-100000, 100000-200000 and so on.
I was going to use the case when beastmode but cant find a between function to select the relevant numbers. Any help?
Best Answer
-
Here you go:
CASE WHEN `Followers` >= 0 AND `Followers` <= 9999 THEN 'Bronze'
WHEN `Followers` >= 10000 AND `Followers` <= 99999 THEN 'Silver'
WHEN `Followers` >= 100000 AND `Followers` <= 499999 THEN 'Gold'
WHEN `Followers` >= 500000 AND `Followers` <= 1000000000 THEN 'Platinum'
END0
Answers
-
You sure can. Just modify this to your own use:
CASE WHEN `followers` BETWEEN 1 AND 50000 THEN 'A'
WHEN `followers` BETWEEN 50001 AND 100000 THEN 'B
.....
ENDHopefully that's what youre looking for. If not, let me know and i'll try to help further.
Sincerely,
ValiantSpur
**Please mark "Accept as Solution" if this post solves your problem
**Say "Thanks" by clicking the "heart" in the post that helped you.0 -
Hi! This doesnt seem to work, is there something else wrong with the beastmode calculation?
CASE WHEN `Followers` BETWEEN 0 AND 9999 THEN 'Bronze'
WHEN `Followers` BETWEEN 10000 AND 99999 THEN 'Silver'
WHEN `Followers` BETWEEN 100000 AND 499999 THEN 'Gold'
WHEN `Followers` BETWEEN 500000 AND 1000000000 THEN 'Platinum'END
0 -
What's the datatype for your `Followers` field? In the analyzer when you're doing the beastmode, what does the icon next to the field name look like? Is it a '123' like below?
0 -
yes its '123' ?
0 -
Here you go:
CASE WHEN `Followers` >= 0 AND `Followers` <= 9999 THEN 'Bronze'
WHEN `Followers` >= 10000 AND `Followers` <= 99999 THEN 'Silver'
WHEN `Followers` >= 100000 AND `Followers` <= 499999 THEN 'Gold'
WHEN `Followers` >= 500000 AND `Followers` <= 1000000000 THEN 'Platinum'
END0 -
Hi, I'm also facing the same issue. I wanted to set the range of a metrics (datatype is '123'). Usually we show this metrics in a aggregated level (Sum). But the output of the beast mode is not showing correctly. Any solution for this?
0
Categories
- All Categories
- Product Ideas
- 2.1K Ideas Exchange
- Connect
- 1.3K Connectors
- 309 Workbench
- 7 Cloud Amplifier
- 10 Federated
- Transform
- 665 Datasets
- 120 SQL DataFlows
- 2.3K Magic ETL
- 827 Beast Mode
- Visualize
- 2.6K Charting
- 90 App Studio
- 46 Variables
- Automate
- 198 Apps
- 488 APIs & Domo Developer
- 97 Workflows
- 24 Code Engine
- AI and Machine Learning
- 23 AI Chat
- 4 AI Projects and Models
- 18 Jupyter Workspaces
- Distribute
- 119 Domo Everywhere
- 283 Scheduled Reports
- 11 Software Integrations
- Manage
- 145 Governance & Security
- 13 Domo Community Gallery
- 49 Product Releases
- 13 Domo University
- Community Forums
- 41 Getting Started
- 31 Community Member Introductions
- 116 Community Announcements
- 5K Archive