Sorry, perhaps I should have made myself a little clearer. I am trying to
look up a value in the first column of another sheet, and return the sum of
the values of the 30th cell in each corresponding row.
What I've got right now is a =vlookup(Name,DataRange,30), but this only
gives me the first instance, and I need to sum up all instances.
> try
> =sumif(criteria range,criteria,datarange)
[quoted text clipped - 4 lines]
> > of all the values. Is there a way to look up all instances of an item and
> > return the sum of the corresponding values?
bj - 21 Jul 2006 19:34 GMT
Sumif should still work
=SUMIF(Sheet2!A1:A5,"a",Sheet2!AE1:AE5)
will work on sheet 1 if what you were looking for was an "a"
> Sorry, perhaps I should have made myself a little clearer. I am trying to
> look up a value in the first column of another sheet, and return the sum of
[quoted text clipped - 11 lines]
> > > of all the values. Is there a way to look up all instances of an item and
> > > return the sum of the corresponding values?