How do we count cells containing text, excluding blank cells?
R RagDyeR May 9, 2005 #3 Try this: =COUNTIF(A:A,"*?") -- HTH, RD ============================================== Please keep all correspondence within the Group, so all may benefit! ============================================== How do we count cells containing text, excluding blank cells?
Try this: =COUNTIF(A:A,"*?") -- HTH, RD ============================================== Please keep all correspondence within the Group, so all may benefit! ============================================== How do we count cells containing text, excluding blank cells?
H Harlan Grove May 9, 2005 #4 RagDyeR wrote... Try this: =COUNTIF(A:A,"*?") Click to expand... .... Given the internals of pattern processing, it'd be more efficient to use =COUNTIF(A:A,"?*").
RagDyeR wrote... Try this: =COUNTIF(A:A,"*?") Click to expand... .... Given the internals of pattern processing, it'd be more efficient to use =COUNTIF(A:A,"?*").
H Harlan Grove May 9, 2005 #5 Bob Phillips wrote... =COUNTA(D)-COUNT(D) Click to expand... .... Picky: that'd include cells evaluating to errors and booleans in the count. It'd also include cells evaluating to "".
Bob Phillips wrote... =COUNTA(D)-COUNT(D) Click to expand... .... Picky: that'd include cells evaluating to errors and booleans in the count. It'd also include cells evaluating to "".