Following up on my question, I am looking for help to use Excel 2019
- to count a number of cells that have content on one side (<>"") and after TRIM() should still contain content.
- This formula is to be extended by a condition (Boolean value in column A => TRUE).
Thank you for your assistance.
>Solution :
The result can only be TRUE
(=1
) or FALSE
(=0
). The multiplication 1
is necessary so that the result TRUE
or FALSE
is also correctly recognized as 0
or 1
in the matrix.
Formula used in cell B13.
-
=SUMPRODUCT(1*(TRIM(B2:B11)<>""))
-
=SUMPRODUCT(1*(A2:A11),1*(TRIM(B2:B11)<>""))
Try the formulas and report back if it works for you.