View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default AutoSum/Subtotal Inclusions/Exclusions

CopyPaste SpecialValuesOKEsc is the only way I can think of without
using a formula that doesn't include Subtotal function.

=SUMIF(I3:I53,"True",F3:F53)

Or if True or False are formula-derived you can remove the quotes

=SUMIF(I3:I53,TRUE,F3:F53)


Gord Dibben MS Excel MVP

On Tue, 29 Sep 2009 09:58:01 -0700, evoxfan
wrote:

In column "I" I have either "True" or "False" in each cell.
I use autofilter and filter so that only "True" values are showing.

In Cell I55, I have a formula (=SUBTOTAL(109,F3:F53)) to sum all values in
Column F while the filter is applied and the formula works great. However
when I remove the filter my formula now includes all the values that were
once hidden.

Any suggestions on how to prevent this from happening so that it does not
include previously hidden values when my filter is removed?

Thanks in advance!