View Single Post
  #2  
Old June 2nd, 2010, 08:51 PM posted to microsoft.public.excel.misc
Luke M[_4_]
external usenet poster
 
Posts: 451
Default sumif only seeing one row

SUMIF doesn't work like that. The second range (a 9x107 matirix) is not the
same size as the first range (a 9x1 matrix).

If the totals are already in row 113, why not do:
=SUMIF('Sheet 2'!$D$5:$L$5,!$A9,'Sheet 2'!$D$113:$L$113)


--
Best Regards,

Luke M
"LennyD" wrote in message
...
Tried to find an answer but haven't found one yet.

I have two sheets. On Sheet 1, I have a Demo Code (1, 2, 3, etc.) in
A9:A17
and a total quantity column in column W. This is where my sumif would go.

On Sheet 2, I have the Demo Code going across from D5:L5. Below that, I
have
quantities listed for each demo code going to different people. The
columns
are then totaled below in row 113. I want to show the quantity for each
demo
code in the Total Quantity column on Sheet 1.

In my total quantity column on Sheet 1, I have the following formula:
=SUMIF('Sheet 2'!$D$5:$L$5,'Sheet 1'!$A9,'Sheet 2'!$D$6:$L$113).

So for some reason, it's only returning the first row (D6) and not the
entire column. The column does have spaces as each address is separated by
a
row or two, but since the range is listed, I don't know why that would be
a
problem. Any ideas? Thanks!