We're trying to find the variance of Actual from Forecasted but running into the Zero Division issue; read a few other threads, all of which were far more involved Beast Mode formulas, and tried as best I could to adapt those formulas to our situation but having trouble getting it to work - any help would be greatly appreciated!
Original Beast Mode Calculation (validated fine but obviously returned an error message when the Beast Mode was saved: You have a divide by zero error in your Card’s Beast Mode)
SUM(`Actual Call Volume`) / SUM(`Forecasted Call Volume`)
After reading other threads tried several possible solutions and thought this made the most sense, and seemed straightforward but can't get it to validate & not sure what needs to be corrected:
CASE
WHEN SUM(`Forecasted Call Volume`) = 0
THEN 'No Variance'
ELSE
SUM(`Actual Call Volume`) / SUM(`Forecasted Call Volume`)
The above formula was tried with several variances as well and still no luck. Any thoughts on what we're missing here? If additional information is required, please don't hesitate to ask and thank you in advance for your time & assistance!