Help with Vlookup

Tridiro

Board Regular
Joined
Apr 26, 2007
Messages
97
Hello Everyone,
I need to get excel to deliver a sum from 75 different arrays that are spreed out over 15 separate worksheets (in the same workbook ).

My problem is this, Each array will have a slightly different set of values in the far left column; which returns the error "A value is not available to the formula or function".

In Plain English, If BOB, TOM and SUE are in the left column in the first array, and BOB, BILL and Sue are in the first column of the second array; then the error occurs when I search for TOM because he is not in the second array.

This is the formula i am using.

{=VLOOKUP($A$12,table1,3,0)+VLOOKUP(A12,talbe8,3,0)+VLOOKUP(A12,table3,3,0)}

Please help! Im so Stuck, I need a workaround!
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
If each table is in fact named table1, table2, table3, through table75, try...

=SUMPRODUCT(SUMIF(OFFSET(INDIRECT("table"&ROW(INDIRECT("1:75"))),,,,1),A12,OFFSET(INDIRECT("table"&ROW(INDIRECT("1:75"))),,2,,1)))

Otherwise, list the name of your tables in a range of cells, let's say G1:G75, then try...

=SUMPRODUCT(SUMIF(OFFSET(INDIRECT($G$1:$G$75),,,,1),A12,OFFSET(INDIRECT($G$1:$G$75),,2,,1)))
 
Upvote 0

Forum statistics

Threads
1,214,938
Messages
6,122,346
Members
449,080
Latest member
Armadillos

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