VLOOKUP help across worksheets

Gnome

New Member
Joined
Jun 29, 2022
Messages
4
Office Version
  1. 2010
Platform
  1. Windows
Hey all,

currently trying to combine some text together from multiple worksheets based on VLOOKUP

what I have so far, only returns the first valid result to the cell with the formula - how can I combine the results?

My formula is =IFERROR(VLOOKUP(Raw!A1,Sheet2!$A:$F,4,)IFERROR(VLOOKUP(Raw!A1,Sheet3!$A:$F,4,)IFERROR(VLOOKUP(Raw!A1,Sheet4!$A:$F,4,))))

This currently skips sheet2 which is empty (intended), captures the data in sheet3 but stops there and does not capture the data in sheet 4.

I'm using Excel 2010, should probably also mention, this will likely extend to further worksheets in time
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hi & Welcome to MrExcel.
This currently skips sheet2 which is empty (intended), captures the data in sheet3 but stops there and does not capture the data in sheet 4.

It is because when it finds the result in sheet 3 it will not go to sheet 4
if it will not find the result in sheet 1,2 and 3 then and then it will look in sheet 4


if you want to combine all the results

May be try

Excel Formula:
=IFERROR(VLOOKUP(Raw!A1,Sheet2!$A:$F,4,),"")&" - "&IFERROR(VLOOKUP(Raw!A1,Sheet3!$A:$F,4,),"")&" - "&IFERROR(VLOOKUP(Raw!A1,Sheet4!$A:$F,4,),"")
 
Upvote 0
Solution
Hi & Welcome to MrExcel.


It is because when it finds the result in sheet 3 it will not go to sheet 4
if it will not find the result in sheet 1,2 and 3 then and then it will look in sheet 4


if you want to combine all the results

May be try

Excel Formula:
=IFERROR(VLOOKUP(Raw!A1,Sheet2!$A:$F,4,),"")&" - "&IFERROR(VLOOKUP(Raw!A1,Sheet3!$A:$F,4,),"")&" - "&IFERROR(VLOOKUP(Raw!A1,Sheet4!$A:$F,4,),"")
ah - worked perfectly - thankyou!
 
Upvote 0

Forum statistics

Threads
1,215,022
Messages
6,122,716
Members
449,093
Latest member
Mnur

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