i am trying to search colum "A" for all values equal to something, say all
the cells that have '1000' as their data, and then add up all the cells in
the corresponding row, so if A34, A50, and A56 all have 1000 in them, then I
want to return the value of all the cells added up in the rows, say B34,50,56
: K34,50,56
Toppers - 16 Jul 2006 17:16 GMT
Enter with Ctrl-Shift-Enter (an array formula)
=SUM(IF(A1:A100=1000,B1:K100))
Change range to suit
> i am trying to search colum "A" for all values equal to something, say all
> the cells that have '1000' as their data, and then add up all the cells in
> the corresponding row, so if A34, A50, and A56 all have 1000 in them, then I
> want to return the value of all the cells added up in the rows, say B34,50,56
> : K34,50,56
VBA Noob - 16 Jul 2006 17:34 GMT
Or how about
=SUMPRODUCT(--($A$1:$A$56=1000)*($A$1:$A$56)+(--($A$1:$A$56=1000)*($B$1:$B$56)+(--($A$1:$A$56=1000)*($K$1:$K$56)))
Ragdyer - 16 Jul 2006 17:45 GMT
What's wrong with simply using:
=SUMPRODUCT((A1:A100=1000)*B1:K100)

Signature
Regards,
RD
---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
>
> Or how about
=SUMPRODUCT(--($A$1:$A$56=1000)*($A$1:$A$56)+(--($A$1:$A$56=1000)*($B$1:$B$5
6)+(--($A$1:$A$56=1000)*($K$1:$K$56))))
VBA Noob - 16 Jul 2006 17:59 GMT
Sorry I read it wrong
I thought he just wanted Col B and K not all of them
VBA Noo