IFERROR help

F

fruitchunk

This is the current formula I have
=IF(A1="NEW","",LOOKUP(2,1/((B1=Sheet1!A:A)*(C1=Sheet1!F:F)),Sheet1!K:K))
on some cells I get n/a
I want to combine it with IFERROR function but i don't know how.
 
P

Pete_UK

I don't have XL2007, but I think the syntax is:

=IFERROR(your_formula,"")

where I presume you want a blank to show instead of #N/A.

Hope this helps.

Pete
 
F

Fred Smith

Assuming you want to check for an error in the Lookup function, is would be:
=IF(A1="NEW","",IFERROR(LOOKUP(2,1/((B1=Sheet1!A:A)*(C1=Sheet1!F:F)),Sheet1!K:K),"Error
message"))

Regards,
Fred
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top