I'm trying to Subtotal a series of SUMIFS functions.
I currently have a series of the following SUMIFS function in column G:
This pulls the values from another worksheet using named ranges.
At the end of column G I would like to subtotal everything:
My issue is that I'm not sure how to make the SUMIFS formula act like a SUBTOTAL formula so that its value gets captured in the final Total.
Thank you for any help.
I currently have a series of the following SUMIFS function in column G:
Code:
=IF(cur_month>=G$12-1,SUMIFS(amt_Jan,dpt_Jan,$A23,acct_Jan,$B23),SUM(G15:G22))
This pulls the values from another worksheet using named ranges.
At the end of column G I would like to subtotal everything:
Code:
=SUBTOTAL(9,G15:G251)
My issue is that I'm not sure how to make the SUMIFS formula act like a SUBTOTAL formula so that its value gets captured in the final Total.
Thank you for any help.