View Single Post
  #3  
Old June 2nd, 2010, 09:03 PM posted to microsoft.public.excel.misc
Tom-S[_2_]
external usenet poster
 
Posts: 68
Default sumif only seeing one row

If I'm reading your post correctly, it sounds like you've already done the
sum of quantities for each demo in row 113 of Sheet 2, so all you need is to
transfer these sums to column W on Sheet 1. This can be done by HLOOKUP for
instance, with the following formula in cell W9:

=HLOOKUP(A9,'Sheet 2'!$D$5:$L$113,109,FALSE)

Drag fill this formula down to W17 and your sums from Sheet 2 should all
appear.

Regards,

Tom


"LennyD" wrote:

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!