MrDB4Excel
Active Member
- Joined
- Jan 29, 2004
- Messages
- 348
- Office Version
- 2013
- Platform
- Windows
In this workbook, I have tried in vain to get cells to show nothing when there is no value in specific cells.
Cells A2 to A8 show a date while cells A9 to A11 are blank.
Cells C2 to C11 has the formula =IF(ISBLANK(A2),"",A2); obviously each successive row the row number changes, for example:
In cell C2 is =IF(ISBLANK(A2),"",A2) then in cell C3 is =IF(ISBLANK(A3),"",A3)…
Why then do cells B9 to B11 show #VALUE!
Cells A2 to A8 show a date while cells A9 to A11 are blank.
Cells C2 to C11 has the formula =IF(ISBLANK(A2),"",A2); obviously each successive row the row number changes, for example:
In cell C2 is =IF(ISBLANK(A2),"",A2) then in cell C3 is =IF(ISBLANK(A3),"",A3)…
Why then do cells B9 to B11 show #VALUE!
Conversations with RobJessee-RJ.xlsx | |||||
---|---|---|---|---|---|
A | B | C | |||
1 | Date | Year | |||
2 | 02/05/2022 15:20:17 | 2022 | 02/05/2022 15:20:17 | ||
3 | 02/08/2022 18:52:29 | 2022 | 02/08/2022 18:52:29 | ||
4 | 02/08/2022 19:45:46 | 2022 | 02/08/2022 19:45:46 | ||
5 | 02/08/2022 19:31:58 | 2022 | 02/08/2022 19:31:58 | ||
6 | 02/08/2022 19:48:35 | 2022 | 02/08/2022 19:48:35 | ||
7 | 02/08/2022 19:52:11 | 2022 | 02/08/2022 19:52:11 | ||
8 | 02/08/2022 19:53:18 | 2022 | 02/08/2022 19:53:18 | ||
9 | #VALUE! | ||||
10 | #VALUE! | ||||
11 | #VALUE! | ||||
BogusData |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B2:B11 | B2 | =YEAR(C2) |
C2:C11 | C2 | =IF(ISBLANK(A2),"",A2) |