View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom[_2_] Peo Sjoblom[_2_] is offline
external usenet poster
 
Posts: 964
Default Sum values on different rows

Unmerge the cells, never use merged cells except for header in maybe the
first row.
Otherwise you are in for unpleasant surprises down the road. I never use
merged cells anywhere because I
don't need them, you can center across selection to get similar layout but
merged cells will always cause grief whether it is copying and pasting,
sorting or using functions


if you want to add every second cell counting from A1

=SUMPRODUCT(--(MOD(ROW(A1:A199)-ROW(A1),2)=0),A1:A199)


from A2


=SUMPRODUCT(--(MOD(ROW(A1:A199)-ROW(A1),2)=1),A1:A199)

--


Regards,


Peo Sjoblom

"Alonso" wrote in message
...
Hi

my problem is that I have in cell A1 (merged with A2) the name of one item
on B1 is the stock
and in B2 is the number of items we need for the month
on A3 (merged with A4) is another item
again, b3 = stock
B4 = needed

What I want to do is
(1) to sum all the items on stock
(2) to sum all the items needed for that month

one way will be
STOCK =A1+A3+...
NEEDED = A2+A4+...

it's there another, simpler way??
the items could reach a 100, and I don't want to end
STOCK =A1+A3+...+A199