• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

When I filter data, the sum total does not recaculate

BigD

Member
It drives me bananas when I cannot figure something out.

I am trying to make the sheet calculate the day total based upon filtering the "supervisor" column.

Thank you for any help.
 

Attachments

  • Schedule 10.27.14_Dustin.xlsm
    473.1 KB · Views: 4
SUM doesn't care if a cell is hidden or not. You'll want to use the SUBTOTAL function, which can ignore hidden cells. Instead of this structure:
=SUM(MyRange)
you'll want:
=SUBTOTAL(109,MyRange)
CHeck out the XL help file on SUBTOTAL for more info.
 
It drives me bananas when I cannot figure something out.

I am trying to make the sheet calculate the day total based upon filtering the "supervisor" column.

Thank you for any help.
Hi,

I changed your formula to this which ignores rows filtered out,

=SUBTOTAL(9,Table4[Mon, 10/27])
 

Attachments

  • Schedule 10.27.14_Dustin.xlsm
    390.4 KB · Views: 3
Back
Top