I've got a calculation I am trying to perform with a beast mode formula, that I can't get to work.
The calculation is (Number of Lines / Hours Active) / Standard
I'm trying to protect against divide by zero in the two layers of the formula. The first item in the order of operation is the (Number of Lines / Hours Active), then the result of that calculation is / Standard
Here is the beast mode I attempted, but is not working. I know this case is checking for NULL, do I need to check for zero as well?
CASE
WHEN IFNULL(SUM(`RCV Standard - Dynamic`),0)=0
THEN 0
ELSE
(CASE
WHEN IFNULL(SUM(`RCV Time Active`),0)=0
THEN 0
ELSE
(SUM(`RCV Number of Lines`)/SUM(`RCV Time Active`))/`RCV Standard - Dynamic`
END)
END