VBA ISEMPTY Function (Syntax + Example)

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

- Written by Puneet

The VBA ISEMPTY 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 blank or else FALSE. In simple words, it can check whether the value supplied is blank or not and returns TRUE or FALSE based on that. It’s equivalent to the worksheet’s ISEMPTY function.

Syntax

IsEmpty(Expression)

Arguments

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

Example

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

example-vba-isempty-function
Sub example_ISEMPTY()
Range("B1").Value = IsEmpty(Range("A1"))
End Sub

In the above code, we have used ISEMPTY to check if the cell when is empty or not and it has returned TRUE in the result as cell A1 is blank.