> Give this a try. In column B of Sheet 1 enter:
>
[quoted text clipped - 16 lines]
> >
> > thanks for anyones help,
for future reference, remember that ISNA only works for the one type of
error. you can use ISERROR in the same fashion for all errors not just
missing data. if you only need to find the missing data, and don't need to
validate correct data you can use
=IFERROR(VLOOKUP(A1,'Sheet 2'!$A$1:$A$100,1,FALSE)),"Missing")
and this will work just for finding errors in your range without having to
validate any other data.
> thank you very much, I've felt like an idiot for the last couple of days
> trying to "self educate myself and get it to work. You have ended my
[quoted text clipped - 20 lines]
> > >
> > > thanks for anyones help,
JE McGimpsey - 25 Sep 2007 13:19 GMT
Note that IFERROR was introduced in XL07.
> if you only need to find the missing data, and don't need to
> validate correct data you can use
> =IFERROR(VLOOKUP(A1,'Sheet 2'!$A$1:$A$100,1,FALSE)),"Missing")
> and this will work just for finding errors in your range without having to
> validate any other data.
Peo Sjoblom - 25 Sep 2007 15:22 GMT
That's why one wants to use it, if you don't want to get NA errors because
the value cannot be found it's perfect to use that particular function to
trap it but using ISERROR or IFERROR (in Excel 2007) will trap all errors
even those that can be of interest to know

Signature
Regards,
Peo Sjoblom
> for future reference, remember that ISNA only works for the one type of
> error. you can use ISERROR in the same fashion for all errors not just
[quoted text clipped - 35 lines]
>> > >
>> > > thanks for anyones help,