Applicable Versions: All
Most likely cause is a possible division by zero in the calculated column.
If this happens in a single row, it prevents the entire calculation. You can use the IIF expression to handle this, i.e
IIF( [MyColumn1] <> 0 , [MyColumn2] / [MyColumn1] , 0 ). |