SUM of VLOOKUP Value from Different Sheets

Digit4L

New Member
Joined
Feb 28, 2019
Messages
2
Dear All,

I would like to SUM the VLOOKUP Value from Different Sheets..

I don't want to use SUMIF or SUM, because I have 2000+ Product Rows of Data and 40 Columns, If I include any new Product in Sheet 1 or Sheet 2 and Sort the data based on the Category, Main Sheet Data will give me bad result.

Example :

=VLOOKUP(E6,SHEET1!$E$5:$AM$9,11,FALSE) + VLOOKUP(E6,SHEET2!$E$5:$AM$9,11,FALSE) + VLOOKUP(E6,SHEET3!$E$5:$AM$9,11,FALSE) + VLOOKUP(E6,SHEET4!$E$5:$AM$9,11,FALSE) + + VLOOKUP(E6,SHEET5!$E$5:$AM$9,11,FALSE)

Looking for your Help,
Thanks alot
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Let A1:A5 (or some other range) house the sheet names SHEET1, SHEET2, etc.

Now try:

=SUMPRODUCT(SUMIFS(INDIRECT("'"&$A$1:$A$5&"'!O5:O9"),INDIRECT("'"&$A$1:$A$5&"'!E5:E9"),E6))
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,208
Members
448,554
Latest member
Gleisner2

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