Sum multiple columns using the same vlookup formula

dubvie

New Member
Joined
Jun 6, 2005
Messages
12
I am trying to use a vlookup to sum multiple columns of data all in the same row.

I'm trying to use
=SUM(VLOOKUP($A7,'2008 Monthly TEMP Pivot'!$A:$N,{4,5,6,7,8,9,10,11,12,13},FALSE))
to sum columns 4,5,6...

But it is giving me the same result as
=VLOOKUP($A7,'2008 Monthly TEMP Pivot'!$A:$N,4,FALSE)

Is there a way to do what I'm trying with out summing 10 different vlookups?

Thanks for any help/advice!
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Try...

=SUMPRODUCT(VLOOKUP($A7,'2008 Monthly TEMP Pivot'!$A:$N,{4,5,6,7,8,9,10,11,12,13},FALSE))

Hope this helps!
 
Upvote 0
Thank you only a drafter! It was that simple, I was not using ctrl+shift+enter.

Thank you for the alternate suggestion Domenic. It would've have worked as well.
 
Upvote 0

Forum statistics

Threads
1,213,581
Messages
6,114,460
Members
448,573
Latest member
BEDE

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top