Hello all, I have a form with a contol source of =DSum("total","qryQFF1stREC") if this dose not return a value I nee it to reurn a 0 so my other text boxes caculate correctly. Any Ideas?
Hello all, I have a form with a contol source of =DSum("total","qryQFF1stREC") if this dose not return a value I nee it to reurn a 0 so my other text boxes caculate correctly. Any Ideas?
As a guess, try:
=Nz(DSum("total","qryQFF1stREC"),0)
If this helped, please click the star at the bottom left of this posting and add to my reputation. Many thanks.
Bob Fitzpatrick
Thank you Thank you..... That did it!!