Beast mode: Format numeric fields in Concat function
Is there a better way to format values in beast mode then using a bunch of case statements to insert commas (see example below)? The format function does not exist in beast mode. WHEN `Amount Value` >= 10000 AND `Amount Value` < 99999 THEN CONCAT('$',LEFT(CONCAT(round(`Amount Value`,0),''),2),',',RIGHT(CONCAT(round(`Amount…