Is there a way to use vector style data groupings in Beast Mode?
I am trying to find a quicker way to use grouped data values in a column to filter an issue. Let's say I want to say any records that are A,B, and D should be marked "Inefficient" out of column Alpha that has values A,B,C,D,E. In something like R I would do this by using a similar code:
v-Inefficient <- c{"A","B","D"}
Using that logic utilize some kind of beast mode where:
(Case when Alpha = v-Inefficient then 'Inefficient'
else efficient
end)
Even if I could have a method of grouping to filter in the beast mode like:
(Case when Aplpha = {'A', 'B', 'D'} then 'v-Inefficient'
else 'Efficient'
End)
Is there a way to replicate this concept in a Domo Beast mode? I have some situations where I am grouping off of larger beast modes, and then boiling down those beast mode results to isolated criteria per a filter.
Best Answer
-
In SQL syntax we write this as follows:
CASE
WHEN `Alpha` IN ('A', 'B', 'D')
THEN `v-Inefficient`
WHEN `Alpha` IN ('C', 'E')
THEN `v-Efficient`
END
This should do exactly what you are looking for.
KurtF
**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
Answers
-
You can't declare variables or nest Beast Bodes in Beast Mode, but something like a case statement using LIKE would work. It would just get 'wordy'?
CASE
WHEN Alpha LIKE '%A%' OR Alpha LIKE '%B%' or Alpha LIKE '%D%'
THEN 'v-Inefficient'
ELSE 'Efficient'
END
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 -
Yeah, my beast modes were getting ridiculously wordy... I was also overlaying other beast modes that would have more words, so I was hoping there was a quick and dirty simple way through. What you are showing is the only method I can find to work as well. Thank you so much for you help and time.
1 -
Nested beast modes would take care of this pretty quick, so you could reuse code and keep busy beast modes simpler. Until then, to crazy town we go.
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 -
In SQL syntax we write this as follows:
CASE
WHEN `Alpha` IN ('A', 'B', 'D')
THEN `v-Inefficient`
WHEN `Alpha` IN ('C', 'E')
THEN `v-Efficient`
END
This should do exactly what you are looking for.
KurtF
**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 -
I read your message to mean the field would contain a string of comma separated values like 'A,B,D'. In that case, the LIKE style statement would be correct. If the column is only ever a single character, @KurtF's response is the better, simpler way.
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
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 738 Beast Mode
- 57 App Studio
- 40 Variables
- 685 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 47 Workflows
- 10 DomoAI
- 36 Predict
- 15 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 124 Manage
- 121 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive