Forum Discussion
cshanahan55
Oct 26, 2020Copper Contributor
SUMPRODUCT Function with Criteria for Visible Rows
I am trying to get the totals for a column in a table based on a condition. In my example, I want to filter by a column (Fans) and then get the count for when the value for the column (Change) is a ...
- Oct 26, 2020
Here you go:
=SUMPRODUCT((Table1[Change]<0)*SUBTOTAL(102,OFFSET(E4,ROW(Table1[Change])-MIN(ROW(Table1[Change])),0)))
HansVogelaar
Oct 26, 2020MVP
Here you go:
=SUMPRODUCT((Table1[Change]<0)*SUBTOTAL(102,OFFSET(E4,ROW(Table1[Change])-MIN(ROW(Table1[Change])),0)))cshanahan55
Oct 26, 2020Copper Contributor
Awesome formula and solution. Thanks!