ISNA function in Excel
Using Excel documents shared from friends or on the internet, you sometimes come across ISNA () combined with other functions like VLOOKUP () and IF (). You wonder why they use ISNA () function so?
The following article will guide the syntax and usage of the ISNA () function in Excel.
Description
The ISNA () function helps you identify if the value is # N / A (the value is not available).
The ISNA () function returns TRUE if the cell contains # N / A values. Returns FALSE if the cell does not contain the value # N / A.
This function is often used in conjunction with VLOOKUP () and IF () functions.
Syntax
= ISNA (value)
With value as the value of the cell, the expression you need to check.
For example
Simple example is as follows: You have cell B6 with a value of 35, cell B7 has the value # N / A, so when testing cell B6 and cell B7 with the ISNA function will have different results:
You can use the value as an expression, for example VLOOKUP expression as the example below:
Explain the above example:
1. The VLOOKUP () function did not find the value of L11 in the Price Code table, so the result is # N / A so the ISNA () function will return TRUE.
2. VLOOKUP () finds the value of L13 in the Price Code table so the result returned will be the value corresponding to the L13 code. So the ISNA () function will return the FALSE value because its value is different from # N / A.
In addition to combining with VLOOUP function, you can combine with IF function to get more complete results.
You should read it
- ISNA function - The function returns True if the value is an # N / A error value in Excel
- Basic Excel functions that anyone must know
- How to use Hlookup function on Excel
- How to use the SUM function to calculate totals in Excel
- How to use the LEN function in Excel
- How to use COUNTIF function on Excel
- How to use the MOD function and QUOTIENT function in Excel
- How to use MID functions to get strings in Excel
- How to use Excel's VALUE function
- How to use the WRAPROWS function in Excel
- How to use the IFS function in Excel 2016
- How to use the NPER function in Excel to plan loans and savings
Maybe you are interested
AMD has surpassed Intel in brand value
SQL way to count NULL and NOT NULL values in a column
Comparing Odroid-N2+ and Raspberry Pi 4: Which option offers better value?
How to receive free gifts from IObit with a total value of nearly 150,000 USD
Write a program to find duplicate values in Python
Write a program to check duplicate values in Python