VBA ISNULL Function (Syntax + Example)

Last Updated: June 22, 2023
puneet-gogia-excel-champs

- Written by Puneet

The VBA ISNULL function is listed under the information category of VBA functions. When you use it in a VBA code, it evaluates the supplied expression and returns TRUE if it is NULL or else FALSE. In simple words, it can check whether the value supplied is NULL or not and returns TRUE or FALSE based on that.

Syntax

IsNull(Expression)

Arguments

  • Expression: An expression that you want to test if it’s a NULL or not.

Example

To practically understand how to use the VBA ISNULL function, you need to go through the below example where we have written a vba code by using it:

example-vba-isnull-function
Sub example_ISNULL()
Range("A1").Value = IsNull("myVar")
End Sub

In the above code, we have used ISNULL to check if the variable myVar is null or not and it has returned TRUE in the result.