I have a calculation that takes the sum value from a subform.
If the subform has no data in it I get #error in the calculation which stuffs up everything else.
I have tried this
=nz([sbfQBOrderInfo].[Form]![curBillTot],0)
but a lack of data due to an empty subform obviously doesn’t return a null
What should I do for the value to return 0 if the subform is empty?