IsEmpty function usage in Excel

Source: Internet
Author: User

First, IsEmpty grammar

Returns a Boolean value that indicates whether the variable has been initialized.

Grammar

IsEmpty (expression)

The necessary expression parameter is a Variant that contains a numeric or string expression. However, because IsEmpty is used to determine whether an individual variable has been initialized, the expression parameter is usually a single variable name.

Description

IsEmpty returns TRUE if the variable is uninitialized or is explicitly set to Empty, otherwise it returns FALSE. If expression contains more than one variable, IsEmpty always returns FALSE. IsEmpty only returns information that is meaningful for a variant expression.

Second, IsEmpty usage

This example uses the IsEmpty function to check whether a variable has been initialized.

Dim MyVar, MyCheck

MyCheck = IsEmpty (MyVar) ' returns TRUE. MyVar = NULL ' assigns null.

MyCheck = IsEmpty (MyVar) ' returns FALSE. MyVar = Empty ' Fu to Empty.

MyCheck = IsEmpty (MyVar) ' returns TRUE.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.