ACCESS 97

  • Thread starter Thread starter alban
  • Start date Start date
A

alban

when trying to run reports on the database i get error
<run-time error 94 :invalid use of null>. I don't know
much about access but i am willing to learn. Is there
anyone who could tell me what i should do please. thank
you
 
See:
Common errors with Null
at:
http://allenbrowne.com/casu-12.html

The article deals with the 6 most common errors with null. Yours may be
caused by trying to assign a value from a control to something in your VBA
code that is not a Variant (e.g. a String, or Integer variable). Only
Variants can be Null.
 
Back
Top