Consulting

Results 1 to 3 of 3

Thread: Text instead of #N/A

  1. #1

    Text instead of #N/A

    Hi all from a rather gloomy Southern England.

    I have a rather complicated formula that basically has a couple of If statements and then a lookup against a range named MyPostCodes.

    If the English PostCode in G3 is not in the MyPostCodes range I get the error #N/A.

    Is it possible to have the word "Transfer" instead


    =IF(I3="Barnstaple","Barnstaple",(IF(G3="","No Post Code",(IFERROR(VLOOKUP(LEFT(G3,FIND(" ",G3)+1),MyPostCodes,2,FALSE),VLOOKUP(LEFT(G3,FIND(" ",G3)-1),MyPostCodes,2,FALSE))))))

    As ever my sincere thanks for any help that you can provide

  2. #2
    VBAX Mentor
    Joined
    Feb 2015
    Posts
    395
    Location
    Just wrap this around your original formula =IFERROR(orig formula,"TRANSFER")

    so formula becomes:
    =IFERROR(IF(I3="Barnstaple","Barnstaple",(IF(G3="","No Post Code",(IFERROR(VLOOKUP(LEFT(G3,FIND(" ",G3)+1),MyPostCodes,2,FALSE),VLOOKUP(LEFT(G3,FIND(" ",G3)-1),MyPostCodes,2,FALSE)))))),"TRANSFER")

    should work

  3. #3
    Yongle

    Thank you it works a treat.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •