Here is my beastmode. But when I pull it into a card it shows different amounts and it doesn't sum it correctly either. Is there something specific i need to do to make sure it knows it's a value?
SUM((CASE
WHEN `premiumtype` = 'Test' AND `planeventtype` = 'Full Season' THEN 18000000
WHEN `premiumtype` = 'Test1' AND `planeventtype` IN ('Half Season','Flex Plan','Mini-Plan') THEN 750000
WHEN `premiumtype` = 'Test2' AND `planeventtype` = 'Single Event' THEN 250000
ELSE 0
END
))