Consulting

Results 1 to 3 of 3

Thread: Formula Support Issue

  1. #1
    VBAX Regular
    Joined
    Oct 2017
    Posts
    27
    Location

    Question Formula Support Issue

    Good afternoon, I hope you're all well.
    At my work, half the users are on Excel 2013 and the other half are on Excel 2010.

    On a spreadsheet I've created, I've used the following formula:

    =IF(ISNUMBER(1/B10),B10*0.0622,IFNA(VLOOKUP(C10,Obex_Price_List,3,0),""))

    This works fine for me on 2013, but when a 2010 user loads it up, the formula gets changed to:

    =IF(ISNUMBER(1/B10),B10*0.0622,_xlfn.IFNA(VLOOKUP(C10,Obex_Price_List,3,0),""))

    As I understand it, the _xlfn. error occurs when a particular formula isn't supported by a certain version of Excel?
    I really thought this would be more of an issue with Excel versions pre 2007 and am surprised 2010 is giving me this error.

    I was wondering if anyone can suggest how I change my formula to enable it to work on 2010, while still working in 2013?

    All help is greatly appreciated, thank you.
    Regards
    Martin

  2. #2
    VBAX Regular
    Joined
    Oct 2017
    Posts
    27
    Location
    Ok... I think I solved it, lol.
    I've changed it to:

    =IF(ISNUMBER(1/B10),B10*0.0622,IFERROR(VLOOKUP(C10,Obex_Price_List,3,0),""))
    Seems to have done the trick...

  3. #3
    VBAX Guru mancubus's Avatar
    Joined
    Dec 2010
    Location
    "Where I lay my head is home" :D
    Posts
    2,644
    Quote Originally Posted by Marhier View Post
    As I understand it, the _xlfn. error occurs when a particular formula isn't supported by a certain version of Excel?
    that's correct.

    and IFERROR was the answer as you figured out.
    PLS DO NOT PM; OPEN A THREAD INSTEAD!!!

    1) Posting Code
    [CODE]PasteYourCodeHere[/CODE]
    (or paste your code, select it, click # button)

    2) Uploading File(s)
    Go Advanced / Attachments - Manage Attachments / Add Files / Select Files / Select the file(s) (multiple files can be selected while holding Ctrl key) / Upload Files / Done
    Replace company specific / sensitive / confidential data. Include so many rows and sheets etc in the uploaded workbook to enable the helpers visualize the data and table structure. Helpers do not need the entire workbook.

    3) Testing the Codes
    always back up your files before testing the codes.

    4) Marking the Thread as Solved
    from Thread Tools (on the top right corner, above the first message)

Posting Permissions

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