G
gmilton
I need to count instances of particular cell content (alphanum)within a
filtered data table - Data table is filtered on COL A, Range to be
parsed is in COL B.
COUNTA counts instances within total range, and does change if the
range is filtered. Combining SUBTOTAL and IF statements produce #VALUE
errors, EG:
=IF([range]=[ref],SUBTOTAL(3,[range]),0)
=SUBTOTAL(3,IF([range]=[ref],[range]),0)
=SUBTOTAL(3,COUNTIF([range], [ref]))
Condition sums and nested COUNTIF statements do not work either.
In plain language, the function should: Count the instances where
visible (filtered) cells in a selected range (column) contain a
specified value.
filtered data table - Data table is filtered on COL A, Range to be
parsed is in COL B.
COUNTA counts instances within total range, and does change if the
range is filtered. Combining SUBTOTAL and IF statements produce #VALUE
errors, EG:
=IF([range]=[ref],SUBTOTAL(3,[range]),0)
=SUBTOTAL(3,IF([range]=[ref],[range]),0)
=SUBTOTAL(3,COUNTIF([range], [ref]))
Condition sums and nested COUNTIF statements do not work either.
In plain language, the function should: Count the instances where
visible (filtered) cells in a selected range (column) contain a
specified value.