schardt679
Board Regular
- Joined
- Mar 27, 2021
- Messages
- 58
- Office Version
- 365
- 2010
- Platform
- Windows
- Mobile
- Web
NOTERROR returns TRUE or FALSE if a cell in a given range is not an error.
Excel Formula:
=LAMBDA(Array,
--(ISERROR(Array))=0
)
REVERSE Test.xlsx | |||||||||
---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | |||
1 | NOTERROR | ||||||||
2 | |||||||||
3 | Original Data | Result | |||||||
4 | 1 | TRUE | TRUE | ||||||
5 | 2 | TRUE | TRUE | ||||||
6 | #N/A | FALSE | TRUE | ||||||
7 | ABC | TRUE | TRUE | ||||||
8 | ABC | TRUE | TRUE | ||||||
9 | |||||||||
10 | B7 & C8 contain space(s) | ||||||||
11 | C6 contains a non-breaking space | ||||||||
12 | C14 contains white text | ||||||||
13 | =NOTERROR(B4:C8) | ||||||||
14 | |||||||||
NOTERROR |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C4 | C4 | =CHAR(160) |
E4:F8 | E4 | =NOTERROR(B4:C8) |
B5 | B5 | =CHAR(32) |
B6 | B6 | =NA() |
C6 | C6 | =REPT(" ", 5) |
B13 | B13 | =FORMULATEXT(E4) |
Dynamic array formulas. |
Upvote
0