Vlookup

gj&wxb

New Member
Joined
Sep 12, 2011
Messages
1
<table border="0" cellpadding="0" cellspacing="0" height="300" width="489"><col width="69"><tr height="17"> <td style="height:12.9pt;width:52pt" height="17" width="69">As data in sheet1 has exceeded row 65536, therefore I have to create sheet2 for new data. Is there any method to vlookup data from both sheet1 & sheet2 ?</td> </tr></table>
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Exactly as mentioned by sheetspread, something like:
Cell Formulas
RangeFormula
A1=IFERROR(VLOOKUP("Value_To_LookUp",Sheet1!A:B,2,FALSE),VLOOKUP("Value_To_LookUp",Sheet2!A:B,2,FALSE))


Hope this helps.

Regards.
 
Upvote 0
<TABLE border=0 cellSpacing=0 cellPadding=0 width=489 height=300><COLGROUP><COL width=69><TBODY><TR height=17><TD style="WIDTH: 52pt; HEIGHT: 12.9pt" height=17 width=69>As data in sheet1 has exceeded row 65536, therefore I have to create sheet2 for new data. Is there any method to vlookup data from both sheet1 & sheet2 ?</TD></TR></TBODY></TABLE>
Looks like you are on Excel 2003 or an earlier system. If so, try something like:
Code:
=IF(ISNUMBER(MATCH(LookupValue,Sheet1!A:A,0)),INDEX(Sheet1!B:B,
    MATCH(LookupValue,Sheet1!A:A,0)),INDEX(Sheet2!B:B,
      MATCH(LookupValue,Sheet2!A:A,0)))

for unsorted data.
 
Upvote 0

Forum statistics

Threads
1,224,581
Messages
6,179,668
Members
452,936
Latest member
anamikabhargaw

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