Author Topic: Microsoft Access Function Library: IsNull()  (Read 4285 times)

bbasujon

  • Administrator
  • VIP Member
  • *****
  • Posts: 1826
  • I want to show my performance at any where
    • View Profile
    • Higher Education
Microsoft Access Function Library: IsNull()
« on: August 15, 2012, 05:19:18 PM »
Function: IsNull()

Purpose: The IsNull function returns a value of true if the referenced variable contains a null value. Otherwise, it returns false.

Usage: IsNull(variable_name)

Where variable_name is the name of the variable you wish to test.

Returns: True if the referenced variable contains the null value; False otherwise.

Example

 Dim TestEmpty
 Dim TestQuote
 Dim TestNull

 TestQuote = ""
 TestNull = Null

 IsNull(TestEmpty) returns False
 IsDate(TestQuote) returns False
 IsDate(TestNull) returns True
 
Acquire the knowledge and share the knowledge so that knowing,learning then sharing - all are the collection