Treat the null as a zero, for the purposes of your calculation
e.g. Total = IIf(isnull(Field1,0,Field1)) + IIf(isnull(Field2,0,Field2))
In other words, if Field1 or Field 2 contain anything at all, use that value, otherwise treat each as if it contains zero.
Hope it helps.