Site icon Excel Champs

Excel Information Functions

sample file

1. CELL Function

The CELL function returns some specific information about the cell. You can select (which you can specify in the function) from the multiple types of information to get in the result.

Syntax

CELL(info_type, [reference])

Arguments

Notes

Example

In the below example, we have used all the parameters to get information about a cell. You can use this function with other functions where you need to use information about a cell.

2. INFO Function

The INFO function returns information about the current operating environment. You have seven different information types that you can get by using the INFO function.

Syntax

INFO(type_text)

Arguments

Notes

Example

In the below example, we have used all the parameters to get info about the current operating environment.

3. ISBLANK Function

The ISBLANK function returns TRUE if a cell is blank. In simple words, with the ISBLANK function, you can refer to a cell and check if they are blank or not and if it’s blank then it returns TRUE.

Syntax

ISBLANK(value)

Arguments

Notes

Example

In the below example, we have used ISBLANK with IF to deliver a message to the user if cell F1 is blank.

4. ISERR Function

The ISERR Function returns TRUE if a value is an error other than #N/A. Unlike ISERROR, you can check it considers all the errors except #N/A and if there’s an error then it returns TRUE, else FALSE.

Syntax

ISERR(value)

Arguments

Notes

Example

In the below example, we have used ISERR with IF to get a specific text if there is an error in the cell.

In the below example, we have used ISERR with an array range to check the errors from a range of cells.

5. ISERROR Function

The ISERROR function returns TRUE if a value is an error. You can check it considers all the errors and if there’s an error then it returns TRUE, else FALSE.

Syntax

ISERROR(value)

Arguments

Notes

Example

In the below example, we have used ISERROR with IF to get a specific text if there is an error in a cell.

In the below example, we have used ISERROR with an array range to check the error from a range of cells.

6. ISEVEN Function

The ISEVEN Function returns TRUE if the supplied value is an EVEN number. In simple words, with ISEVEN you can check that value is an even number or not.

Syntax

ISEVEN(number)

Arguments

Notes

Example

Below we have used different arguments:

7. ISFORMULA Function

The ISFORMULA function returns TRUE if the value supplied (or the referred cell) has a formula and if their not formula in the cell it returns a FALSE.

Syntax

ISFORMULA(reference)

Arguments

Notes

Example

Below we have used different arguments:

8. ISLOGICAL Function

The ISLOGICAL function returns TRUE if the value supplied (or the value in the cell referred) is a logical value. With a logical value, means TRUE or FALSE. That means if the value is TRUE or FALSE it returns a TRUE else FALSE.

Syntax

ISLOGICAL(value)

Arguments

Notes

Example

Below we have used different arguments:

9. ISNA Function

The ISNA function returns TRUE if the value supplied (or the value in the cell referred) is an #N/A error. In simple words, it only considers the #N/A and returns TRUE, and FALSE for everything.

Syntax

ISNA(value)

Arguments

Notes

Example

In the below example, we have used ISNA to check different error values and we have got TRUE only in the case of #N/A error value.

And in the below example, we have used IF and VLOOKUP with ISNA to deliver a meaningful message to the user.

10. ISNONTEXT Function

The ISNONTEXT function returns TRUE if the value supplied (or the value in the cell referred) is a non-text value. With non-text means, means a number, date, a symbol, etc.

Syntax

ISNONTEXT(value)

Arguments

Notes

Example

In the below example, we have used it with IF to deliver a message to the user if a non-text value will enter into the cell.

11. ISNUMBER Function

The ISNUMBER function returns TRUE if the value supplied (or the value in the cell referred) is a number. In simple words, it only considers the numeric value and ignores the rest.

Syntax

ISNUMBER(value)

Arguments

Notes

Example

In the below example, we have used ISNUMBER with IF to deliver an alert message if a user enters a non-number value in cell F1.

12. ISODD Function

The ISODD function returns TRUE if the value supplied (or the value in the cell referred) is an ODD number. In simple words, if the value is a number which is divisible with 2 it returns TRUE, else FALSE.

Syntax

ISODD(value)

Arguments

Notes

Example

In the below example, we have used ISODD with IF to deliver an alert message to the user if a number nested in the cell other than an odd number.

13. ISREF Function

The ISREF function returns TRUE is the referred value is a valid reference, else FALSE. In simple words, you can use ISREF to check if a text value is a valid reference or not.

Syntax

ISREF(value)

Arguments

Notes

Example

In the below example, the fruit is a valid named range but when you have used double quotation marks, ISREF is unable to test that reference.

14. ISTEXT Function

The ISTEXT function returns TRUE if the value supplied (or the value in the cell referred) is a text. In simple words, it only considers the text and ignores all other types of values.

Syntax

ISTEXT(value)

Arguments

Notes

Example

In the below example, we have used ISTEXT with IF to create a nesting formula to deliver an alert message if the user enters an invalid name (other than a text).

15. N Function

The N function converts a Boolean into a number. In simple words, it converts TRUE into 1 and FALSE into 2. These numbers are the actual value of the boolean values.

Syntax

N(value)

Arguments

Notes

Example

In the below example, we have used N function to insert a comment into a formula.

16. NA Function

The NA function returns the #N/A value. In simple words, the NA function returns the error value #N/A in the result. The best use of the NA function is to get an error when you have empty and missing information in a cell.

Syntax

NA(value)

Arguments

Notes

Example

In the below example, we have inserted NA function in the cell A1 and it has simply returned #N/A.

17. SHEET Function

The SHEET function returns the sheet number for the reference used. In simple words, the SHEET function returns the worksheet number of the range you referred to in the function.

Syntax

SHEET(value)

Arguments

Notes

Example

In the below example, we have used different inputs to get the sheet number.

Where we have invalid sheet name and invalid sheet reference, the SHEET function has returned an error.

18. SHEETS Function

The SHEETS function returns a count of the worksheets from the referred range. In simple words, with the SHEETS function you can count how many sheets are in the range you have referred.

Syntax

SHEETS(reference)

Arguments

Notes

Example

In the below example, we have used 3D cell reference to get the sum of cell A1 from five sheets and we have used the same reference to get the count of sheets.

19. TYPE Function

The TYPE function returns a number that represents the type of the value supplied. In simple words, the TYPE function returns a specific number which represents the type of the supplied value.

Syntax

TYPE(value)

Arguments

Notes

Example

In the below formula, we have used TYPE with IF.

=IF(TYPE(F3)<>1,”Enter Valid Quantity”,E3*F3)

In this formula, TYPE returns a number that represents the type of the value, and then there’s a condition in the IF. If that number does not equal the 1 which means is the supplied value is not a number and IF returns the message “Enter a Valid Value”. And if it is there, it multiples the quantity with the price.

20. ERROR.TYPE Function

The ERROR.TYPE function returns a number to which represents the type of error you have in a cell. For each error type in Excel, there is a specific number and if there’s no error it returns #N/A.

Syntax

ERROR.TYPE (error_val)

Arguments

Notes

Example

In the below example, we have used ERROR.TYPE with VLOOKUP to show a relevant message whenever an error occurs.

You can use this method to deliver a relevant message to the user.

Exit mobile version