I know this is probably quite a trivial question but why am I getting a Data Type Conversion error when I try and save nothing (""
into a Number field in a table.
The field size is Long Integer and Format is General Number. I've also set Required to "No". The Format of the text box is set to General Number.
I can see that it doesn't recognise the "" but even if I use the Nz function it doesnt seem to work.
e.g. With MyRs
.AddNew
!adNumeric = Nz(Me.txtAdNumeric)
.Update
End With
Any ideas?
The field size is Long Integer and Format is General Number. I've also set Required to "No". The Format of the text box is set to General Number.
I can see that it doesn't recognise the "" but even if I use the Nz function it doesnt seem to work.
e.g. With MyRs
.AddNew
!adNumeric = Nz(Me.txtAdNumeric)
.Update
End With
Any ideas?