0% found this document useful (0 votes)
12 views2 pages

Excel Functions Overview

Excel functions

Uploaded by

Maryam Esaa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views2 pages

Excel Functions Overview

Excel functions

Uploaded by

Maryam Esaa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Excel Functions Overview

ISNUMBER

Description: Checks if a value is a number.

Structure: ISNUMBER(value)

Example: =ISNUMBER(123) // Returns TRUE

ISEVEN

Description: Checks if a number is even.

Structure: ISEVEN(number)

Example: =ISEVEN(4) // Returns TRUE

ISODD

Description: Checks if a number is odd.

Structure: ISODD(number)

Example: =ISODD(5) // Returns TRUE

ISBLANK

Description: Checks if a cell is empty.

Structure: ISBLANK(value)

Example: =ISBLANK(A1) // Returns TRUE if A1 is empty

ISLOGICAL

Description: Checks if a value is logical (TRUE or FALSE).

Structure: ISLOGICAL(value)

Example: =ISLOGICAL(TRUE) // Returns TRUE

ISTEXT

Description: Checks if a value is text.


Structure: ISTEXT(value)

Example: =ISTEXT("Hello") // Returns TRUE

ISNONTEXT

Description: Checks if a value is not text.

Structure: ISNONTEXT(value)

Example: =ISNONTEXT(123) // Returns TRUE

ISFORMULA

Description: Checks if a cell contains a formula.

Structure: ISFORMULA(reference)

Example: =ISFORMULA(A1) // Returns TRUE if A1 contains a formula

You might also like