Good day sirs,
Pls i need help, i wanted to add calculated column to my query, adding 3 columns.. What i have is "totalpayments[reservation]+[downpayment]
+[amountpaid])" . But it give me blank.. Is this not working in access?.
If any value is null then it will become null. You might have to wrap each part
totalpayments: nz([reservation],0) +nz([downpayment],0) + nz([amountPaid],0)
If any value is null then it will become null. You might have to wrap each part
totalpayments: nz([reservation],0) +nz([downpayment],0) + nz([amountPaid],0)
If any value is null then it will become null. You might have to wrap each part
totalpayments: nz([reservation],0) +nz([downpayment],0) + nz([amountPaid],0