I have a beast mode that validates and appears to work as intended. However, when I try to save it as an active filter, I get the "There was a problem saving your card…Contact Domo Support." If I move the remove the beast mode from the filter list I can save the card. The beast mode is:
CASE WHEN
(RANK() OVER (PARTITION BY Month
ORDER BY (Product_Cost
) DESC) <= 10) THEN 'Include'
ELSE 'Exclude'
END
Where Month is the integer for the given month (Jan 1, Feb 2, etc) . Thoughts?
Thank You!