#Num!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a formula that i can use that will just null the field if access
encounters this error? Would save me having to manually adjust all data. I
am wits end so have decided that if they give me bad data it will not go into
the data base - they will just have to live with it or submit data in the
proper format.
 
Depends on the problem. If it's with nulls, you can use the NZ function.

If it's none-numerical characters in a number field:

IIf(IsNumeric([TheField]) = True, [TheField], Null)

Jerry Whittle
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top