sum

  • Thread starter Thread starter Danne
  • Start date Start date
D

Danne

Hey!

Is there a way to not include subgroups in excel. For
example I want to sum up with =sum(p100:p105) but p102 and
p103 is subgroups that shouldn't be counted... any ideas?

Regards,
Daniel
 
Daniel,

You can simply do
=SUM(P100:P101,P104:P105) or
=SUM(P100:P105)-SUM(P102:P103)
but that relies on you knowing where subgroups lie. If there is data that
identifies them, you could use SUMIF to identify and subtract.
 
Back
Top