I am making a interactive spreadsheet in which I dumped a bunch of data in one worksheet and then doing some quick analysis on another worksheet. From there I am making a Chart based on the analysis worksheet data. I was using this:
=COUNTIF('RFC Data'!G:G,"Work in Progress")
to pull data into the analysis worksheet and it worked great.
I had a tricky one where I used:
=COUNTIFS('RFC Data'!J:J,"4 - Low",'RFC Data'!T:T,"No",'RFC Data'!U:U,"No users affected")
where I had 3 criteria.
The issue is when I filter data worksheet it is not updating the analysis worksheet and in turn not the Chart.
So I updated the analysis worksheet to use:
=SUMPRODUCT(SUBTOTAL(3,OFFSET('RFC Data'!G:G,ROW('RFC Data'!G:G)-MIN(ROW('RFC Data'!G:G)),,1)),ISNUMBER(SEARCH("Work In Progress",'RFC Data'!G:G))+0)
which works great. The issue is I am having a bugger of a time to update the tricky one with =SUMPRODUCT
.
I tried a few dozen things but no luck! Does anyone have suggestions?