Vlookup multiple sheets

Clueless401

New Member
Joined
Aug 18, 2020
Messages
42
Office Version
  1. 2016
Platform
  1. Windows
Hello friends,

How can i make this formula lookup qty from not only the inventory sheet but also the Other sheet? PLEASE HELP! :/

1642775520906.png
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Just do two separate VLOOKUP formulas added together with the + sign, i.e.
=VLOOKUP(...) + VLOOKUP(...)
 
Upvote 0
OK, so you know that your original formula was working, so that first VLOOKUP should be OK.
Focus on your second VLOOKUP (on the "OTHER" sheet). Try to write that one by itself. Once you get it working, then you can add it to the first one.

Note that if it is possible that one of the sheets might not have a match, you need to account for that (as that will cause the VLOOKUP to return the #N/A error).
You can do that with this structure:
Excel Formula:
=IFERROR(VLOOKUP(...),0) + IFERROR(VLOOKUP(...),0)
which will return a 0 if it does not find a match (instead of an error).

Note that I am counting on you filling in the details for the VLOOKUP where I show the ...
The point is to just show you the formula structures.
Since you were able to create the first VLOOKUP successfully, I trust that you know how to set them up.
 
Upvote 0
OK, so you know that your original formula was working, so that first VLOOKUP should be OK.
Focus on your second VLOOKUP (on the "OTHER" sheet). Try to write that one by itself. Once you get it working, then you can add it to the first one.

Note that if it is possible that one of the sheets might not have a match, you need to account for that (as that will cause the VLOOKUP to return the #N/A error).
You can do that with this structure:
Excel Formula:
=IFERROR(VLOOKUP(...),0) + IFERROR(VLOOKUP(...),0)
which will return a 0 if it does not find a match (instead of an error).

Note that I am counting on you filling in the details for the VLOOKUP where I show the ...
The point is to just show you the formula structures.
Since you were able to create the first VLOOKUP successfully, I trust that you know how to set them up.
THIS IS WHAT WORK, THANK YOU FOR HELPING

1642780086433.png
 
Upvote 0
Solution
Note that will only look up one or the other.
If the possibility exists that they appear on both sheets, it will NOT add them together.
You would need to add the two VLOOKUPs like I showed you, instead of imbedding them in an IFERROR formula.

If the can only exist on one sheet or the other (but never BOTH at the same time), then your formula should be fine.
(It isn't really clear from your original question if this is the case or not).
 
Upvote 0

Forum statistics

Threads
1,203,073
Messages
6,053,381
Members
444,660
Latest member
Mingalsbe

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