Private Sub List6_Click()
Me!txtbal = Me!List6.Column(6) - Nz(Me!txtAmount, 0)
end sub
when i run my update query, it seems like it leaves $0 as null. by that i mean when i look at the table, if the calculation is $0, then field doesnt return $0 but blank.
so i get an error message when i select something from the listbox which has null(column 6) box.
is there a way to make all null = $0?
or not make this error message pop up?
Me!txtbal = Me!List6.Column(6) - Nz(Me!txtAmount, 0)
end sub
when i run my update query, it seems like it leaves $0 as null. by that i mean when i look at the table, if the calculation is $0, then field doesnt return $0 but blank.
so i get an error message when i select something from the listbox which has null(column 6) box.
is there a way to make all null = $0?
or not make this error message pop up?