ACC: "Invalid Use of Null" Error Message with Val() FunctionLast reviewed: June 6, 1997Article ID: Q90722 |
The information in this article applies to:
SYMPTOMSModerate: Requires basic macro, coding, and interoperability skills. If you create a function that uses the Val() function to evaluate a field that contains a null value, you may receive the following error message:
Invalid Use of Null RESOLUTIONMake sure that the Val() function does not attempt to evaluate a field that contains a null value. Or, if you are not sure, add error trapping to your code to trap for this scenario.
MORE INFORMATIONThe Val() function is designed to return the numeric value of a string. When the Val() function attempts to return the numeric value of null, an expression evaluation error occurs. Null is a Variant subtype used to indicate that a data item contains no valid data. Because the Val() function requires valid data, it cannot evaluate a null value.
STATUSThis behavior is by design.
REFERENCESFor more information about the Val() function, search for "Val," and then "Val Function" using the Microsoft Access Help Index. |
Keywords : kberrmsg kbprg SynFnc
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |