Use ISBLANK through 3 how-to topics, all available without membership; start from the How-to Index to jump to the steps you need.
How-to Index
| No. | Topic | Membership Requirement |
|---|---|---|
| 1 | 1. Enter an ISBLANK formula | Free |
| 2 | 2. Check whether a referenced cell is blank | Free |
| 3 | 3. Combine ISBLANK with IF | Free |
How-to Guide
1. Enter an ISBLANK formula
Entry point: Worksheet cell → formula bar
- Open WPS Spreadsheet and go to the worksheet where you want to calculate a result.
- Select a cell where the result should appear.
- Type
=ISBLANK(A1)in the formula bar. - Press Enter to confirm the formula.
Success Criteria
- On-screen result: The result cell shows TRUE or FALSE.
- Next action available: You can change the reference and calculate again.
Tips While Using
- Common mistake: If the reference is incorrect, the formula checks the wrong cell.
- Environment note: You need to work in a spreadsheet file that supports formula editing.
2. Check whether a referenced cell is blank
Entry point: Worksheet cell → formula input
- Identify the target cell you want to test, such as B2.
- Select a result cell and enter
=ISBLANK(B2). - Press Enter to view the result.
- Use the result to determine whether the target cell is blank.
Success Criteria
- On-screen result: A blank target cell returns TRUE, and a non-blank target cell returns FALSE.
- Next action available: You can copy the formula to other rows or columns.
Tips While Using
- Common mistake: A cell that contains text is sometimes mistaken for a blank cell, which causes FALSE.
3. Combine ISBLANK with IF
Entry point: Worksheet cell → formula bar
- Select a result cell.
- Enter a combined formula such as
=IF(ISBLANK(C2),"Not filled","Filled"). - Press Enter to confirm.
- Check whether the returned text matches your expected result.
Success Criteria
- On-screen result: A blank cell shows “Not filled,” and a non-blank cell shows “Filled.”
- Next action available: You can fill the formula down to check multiple rows.
Tips While Using
- Common mistake: Incorrect quotation marks, parentheses, or commas can cause a formula error.