+ Reply to Thread
Results 1 to 16 of 16

What function can be combined with IFNA in Excel Office365 / 2016

  1. #1
    Registered User
    Join Date
    02-24-2018
    Location
    Palmerton, PA
    MS-Off Ver
    2016
    Posts
    39

    What function can be combined with IFNA in Excel Office365 / 2016

    I am currently using IFNA(my_VLOOKUP_formula,"") on a worksheet I am creating for future use. This works great except I now I get a page full of zeros if I add the initial search data but the information I'm looking for has not been updated at this time. For example if my formula is =IFNA(VLOOKUP(A2,MY_SOURCE!$B$:$F$900,6,FALSE),""). My goal is to have a blank cell until something is entered in the source.

    Thanks for any advice you can give!
    Last edited by jpl69; 02-25-2018 at 07:17 AM.

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    46,979

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    Try:
    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Registered User
    Join Date
    02-24-2018
    Location
    Palmerton, PA
    MS-Off Ver
    2016
    Posts
    39

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    Thanks here are my results. Please tell me what I've done wrong.

    If I try

    =IF(IFNA(VLOOKUP(A2,'My_Source'!$B$2:$L$251,3,"")="","",IFNA(VLOOKUP(A2,'My_Source'!$B$2:$L$251,3,""))

    I Get a too few arguments error

    If I try

    =IF(IFNA(VLOOKUP(A2,'My_Source'!$B$2:$L$251,3,FALSE),""),IFNA(VLOOKUP(A2,'My_Source'!$B$2:$L$251,3,FALSE),""))

    I Get "FALSE" When there is no source data

    If I try

    =IF(IFNA(VLOOKUP(A2,'My_Source'!$B$2:$L$251,3,"","")="","",IFNA(VLOOKUP(A2,'My_Source'!$B$2:$L$251,3,"",""))

    I Get a too many arguments error.

  4. #4
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2412 (Windows 11 24H2 64-bit)
    Posts
    88,728

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    Try this:

    =IF(A2="","",IFNA(VLOOKUP(A2,'My_Source'!$B$2:$L$251,3),""))
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

  5. #5
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2024
    Posts
    6,142

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    Or try:

    =IFNA(if(VLOOKUP(A2,MY_SOURCE!$B$2:$F$900,6,FALSE)="","",VLOOKUP(A2,MY_SOURCE!$B$2:$F$900,6,FALSE)),"")
    Last edited by Phuocam; 02-25-2018 at 08:22 AM.

  6. #6
    Registered User
    Join Date
    02-24-2018
    Location
    Palmerton, PA
    MS-Off Ver
    2016
    Posts
    39

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    I'm still getting a zero. Even if I entered text in the Quotes so that it looks like

    =IF(A2="","",IFNA(VLOOKUP(A2,'My_Source'!$B$2:$L$251,3),"Pending"))

    It doesn't show Pending it just shows a zero.

    To break it down ...... IF A2 is blank on the same sheet as the formula I get the results I want. If A2 is populated with something that is not found on the source page I get the results I want. However If I look on the source for A2 and I find A2 in my list on the source page but the additional data I want in the result is not available yet, I get the zero. What I'm trying to achieve is that the cell where my formula is, B2 for example, stays blank ntil both the information in A2 can be matched and the required data is populated in my source data. Is that possible? So far I have only been able to achieve one or the other.

  7. #7
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2412 (Windows 11 24H2 64-bit)
    Posts
    88,728

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    Post the workbook - we are going round in circles. It will be something to do with the nature of the data somewhere related to the formula.

    EDIT: Ah, you won't be able to until you have made at least 10 posts here (new restrictions). Sorry!
    Last edited by AliGW; 02-25-2018 at 08:28 AM.

  8. #8
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2412 (Windows 11 24H2 64-bit)
    Posts
    88,728

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    What does this return:

    =IF(A2=0,"",IFNA(VLOOKUP(A2,'My_Source'!$B$2:$L$251,3),"Pending"))

  9. #9
    Registered User
    Join Date
    02-24-2018
    Location
    Palmerton, PA
    MS-Off Ver
    2016
    Posts
    39

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    Ok, since this is now my ninth post, You are saying I need to reply once more after this?

  10. #10
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2412 (Windows 11 24H2 64-bit)
    Posts
    88,728

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    I believe so. Some changes were made for new members very recently (it's related to curbing SPAM), and it means you can't post a workbook until you have 10 posts under your belt. If you reply to this message, you should be able to attach the workbook.

    Unfortunately the attachment icon doesn't work at the moment, so to attach an Excel file you have to do the following: just before posting, scroll down to Go Advanced and then scroll down to Manage Attachments. Now follow the instructions at the top of that screen.

  11. #11
    Registered User
    Join Date
    02-24-2018
    Location
    Palmerton, PA
    MS-Off Ver
    2016
    Posts
    39

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    So in my next post I should be able to include a wokbook for you to look at

  12. #12
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2412 (Windows 11 24H2 64-bit)
    Posts
    88,728

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    Try it!

  13. #13
    Registered User
    Join Date
    02-24-2018
    Location
    Palmerton, PA
    MS-Off Ver
    2016
    Posts
    39

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    Please see attached
    Attached Files Attached Files

  14. #14
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2412 (Windows 11 24H2 64-bit)
    Posts
    88,728

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    Try this:

    =IFNA(IF(VLOOKUP(A3,Sheet1!$A$2:$C$9,2,FALSE)=0,"",VLOOKUP(A3,Sheet1!$A$2:$C$9,2,FALSE)),"")

  15. #15
    Registered User
    Join Date
    02-24-2018
    Location
    Palmerton, PA
    MS-Off Ver
    2016
    Posts
    39

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    Thanks so very much!!

  16. #16
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2412 (Windows 11 24H2 64-bit)
    Posts
    88,728

    Re: What function can be combined with IFNA in Excel Office365 / 2016

    You're welcome!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] What alternatives to the IFERROR function are available in Excel 2016/Office365?
    By jpl69 in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 02-24-2018, 10:30 AM
  2. Replies: 1
    Last Post: 02-24-2018, 10:11 AM
  3. Replies: 1
    Last Post: 09-18-2017, 08:27 AM
  4. [SOLVED] How to link office365 live sharepoint list with Excel?
    By ImranBhatti in forum Office 365
    Replies: 2
    Last Post: 06-11-2017, 01:59 AM
  5. Migrating a manual dataset to a Pivot Chart - Excel 2016 (Office365)
    By RobertW_K in forum Excel Charting & Pivots
    Replies: 6
    Last Post: 04-13-2017, 08:36 AM
  6. [SOLVED] IFNA function and text into value
    By mcgleeuw in forum Excel Formulas & Functions
    Replies: 34
    Last Post: 02-09-2017, 10:21 AM
  7. Replies: 1
    Last Post: 12-23-2016, 03:52 PM

Tags for this Thread

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1