Hello
I am trying to count number of times a number - in a text format - is below a given threshold. It happens that is the range, there are non-numerical values as in below example
- In B1, the formula "=--(VALUE(A1:A4))" is to convert A1:A4 into numerical value, shown in Excel as { 10, 20, #VALUE!, 30 }
- In C1, the formula "=--(B1:B4)<30" is to an array of boolean, here { TRUE, TRUE, #VALUE!, FALSE }
- In E1, the formula "=COUNTIF(C1#;TRUE)" gives the result 2
The issue I have is that I don't know how to combine formulas of B1, B2 and E1 in a single formula... Any idea?
| A | B | C | E | F |
| 1 | 10 | =--(VALUE(A1:A4)) | =--(B1:B4)<30 | =COUNTIF(C1#;TRUE) | |
| 2 | 20 | | | | |
| 3 | A | | | | |
| 4 | 30 | | | | |
Thanks a lot for your help,
stchln