error handleing with vlookup formula

lhaitken

New Member
Joined
Oct 23, 2011
Messages
25
i've got a formula that looks like this:
=vlookup($A2,MASTER!$A$2:$E$125,3,false)
te formula runs down the A collum pulling information. Problem i have is that other people with use this sheet and I want them to be able to add in information so i want to keep the formulas alive and just have them pull from a drop down on say A20.

however for the time being there is no info in anything past A15 and all of the lookup formulas return a #N/A since there is no valid data. How do I get this to go away?

Thanks all.

-Larry
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Try

=IF(ISNA(VLOOKUP($A2,MASTER!$A$2:$E$125,3,FALSE)),"",VLOOKUP($A2,MASTER!$A$2:$E$125,3,FALSE))
 
Upvote 0

Forum statistics

Threads
1,215,201
Messages
6,123,617
Members
449,109
Latest member
Sebas8956

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