Use ISNA through 3 how-to topics, all available without membership, and jump to each topic from the index below.
How-to Index
| No. | Topic | Membership Requirement |
|---|---|---|
| 1 | 1. Enter the ISNA function | Free |
| 2 | 2. Use ISNA inside IF to check results | Free |
| 3 | 3. Check whether a cross-sheet reference returns #N/A | Free |
How-to Guide
1. Enter the ISNA function
Entry point: Formulas tab → formula bar
- Open WPS Spreadsheet and select the cell where you want to show the result.
- In the formula bar or directly in the cell, type
=ISNA(. - Enter the value, cell, or formula you want to test, such as
A2or a lookup result. - Type the closing parenthesis
)and press Enter. - Check the result: if the target value is
#N/A, the result is TRUE; otherwise it is FALSE.
Success Criteria
- On-screen result: The target cell shows TRUE or FALSE.
- What you can do next: You can copy the formula, fill it down, or nest it with other functions.
Tips While Using
- Common mistake: If you forget the closing parenthesis, the formula will not calculate correctly.
- Environment note: If the tested content is not actually an error value, ISNA will not return TRUE.
2. Use ISNA inside IF to check results
Entry point: Select the result cell → formula bar
- Prepare a formula result that may return
#N/A, such as a lookup formula. - In the target cell, enter a formula like
=IF(ISNA(A2),"Not found",A2). - Press Enter to confirm the formula.
- When A2 is
#N/A, the cell shows your custom text; otherwise it shows the original result. - Edit the prompt text or replacement result as needed.
Success Criteria
- On-screen result: The error value is replaced with clearer text or a fallback result.
- What you can do next: You can copy the formula to other rows and continue using it.
Tips While Using
- Common mistake: Text content should be enclosed in double quotation marks.
- Environment note: If the referenced cell position is wrong, the result may not match your expectation.
3. Check whether a cross-sheet reference returns #N/A
Entry point: Open the target worksheet → select the result cell → formula bar
- In the current worksheet, select the cell where you want to display the check result.
- Enter a formula with a cross-sheet reference, such as
=ISNA(Sheet2!A2). - Press Enter to confirm.
- Review the returned result to see whether the referenced cell is
#N/A. - If needed, continue combining it with IF, AND, or other functions.
Success Criteria
- On-screen result: The current worksheet shows TRUE or FALSE.
- What you can do next: You can continue screening, marking, or replacing cross-sheet data.
Tips While Using
- Common mistake: An incorrect sheet name or cell reference can affect the result.
- Environment note: When the source data changes, the result updates accordingly.