Access 2003
Report Formula
Here is a formula that returns what I need as long as the fields being added have at least one field with a value greater than or equal to zero:
However, occasionally ALL the values being summed in either the Paid or Approved columns are empty cells, and the return is a #Num error. I have tried to use the Nz function to make the forumula return an empty field in such cases:
Thanks, William
Report Formula
Here is a formula that returns what I need as long as the fields being added have at least one field with a value greater than or equal to zero:
=Sum([Paid])/Sum([Approved])
This returns the sum of the Paid column divided by the sum of the Approved column.
However, occasionally ALL the values being summed in either the Paid or Approved columns are empty cells, and the return is a #Num error. I have tried to use the Nz function to make the forumula return an empty field in such cases:
=Sum(Nz([Paid]))/Sum(Nz([Approved]))
But I still get the same error. Is this fixable?
Thanks, William