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.