vlookup range on 3rd sheets

kwloh75

New Member
Joined
May 19, 2009
Messages
5
vlookup range on multiple sheets? <HR style="COLOR: #ffffff; BACKGROUND-COLOR: #ffffff" SIZE=1><!-- / icon and title --><!-- message -->for two sheets with referance on sheet1 and data on sheet2 and three

=IF(ISNA(VLOOKUP(A2,Sheet2!A:B,2,FALSE)),VLOOKUP(A2,Sheet3!A:B,2,FALSE),VLOOKUP(A2,Sheet2!A:B,2,FALSE))
<!-- / message -->

The above formulae after tried, it only work for the reference of 2 sheets, but if the 3rd sheets, how to formulae it ?
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Try

=IF(ISNA(VLOOKUP(A2,Sheet2!A:B,2,0)),
IF(ISNA(VLOOKUP(A2,Sheet3!A:B,2,0)),
VLOOKUP(A2,Sheet2!A:B,2,0)),
VLOOKUP(A2,Sheet2!A:B,2,0))
 
Upvote 0
Try...

Code:
=IF(ISNA(VLOOKUP(A2,Sheet2!A:B,2,FALSE)),IF(ISNA(VLOOKUP(A2,Sheet3!A:B,2,FALSE)),VLOOKUP(A2,Sheet4!A:B,2,FALSE),VLOOKUP(A2,Sheet3!A:B,2,FALSE)),VLOOKUP(A2,Sheet2!A:B,2,FALSE))
 
Upvote 0
Hi and welcome to the board,

You can protect a formual by protecting the Sheet,

Select the entire sheet,

Goto Edit->Format cells,

under 'Protection' tab, uncheck 'Locked'

now select the cells you want to protect,

Goto Edit->Format cells,

check 'Locked' and 'Hidden'

now goto Tools->Protection->Protect Sheet, to protect the sheet
 
Upvote 0
Hi,

i'm using the excel ver.03, can i protect my sheet and allow user to input the selected cells only ?

Thanks
 
Upvote 0
Hi,

i'm using the excel ver.03

Thanks


Is it Excel 2003 or Excel 3.0??

I dont know about 3.0, but in XL 2003 you can protect the cells other than those for Input,


First select all the cells and set Locked & Hidden checked,

and select only those Input cells and uncheck the 'Locked' option

now protect the sheet, that's it
 
Upvote 0
Hi..

Thanks..i am using excel 2003...i get your suggestion.i solve it..

Appreciated for you reply.
 
Upvote 0

Forum statistics

Threads
1,214,515
Messages
6,119,973
Members
448,933
Latest member
Bluedbw

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