A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I am counting a range of cells contain TEXT. This is derived from a formula which includes IFERROPR. I want to modify CONTA to only count cells containing text, exclude cells containing formulas.
Some clarification may in order. Do you mean that you want to count the cells containing text and the cells with formulas that are returning text but you do not want to count the cells with formulas that are returning blank cells, e.g. ""? If this is correct, try,
=SUMPRODUCT(ISTEXT(A1:A9)*(A1:A9<>""))