+ Reply to Thread
Results 1 to 54 of 54

How do I use ISNA on this formula

  1. #1
    Registered User
    Join Date
    08-31-2005
    Posts
    9

    How do I use ISNA on this formula

    =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")


    How can I get the ISNA in there.. while maintaining my IF output. I'd like the box to tell me if there was a match.. if not.. then tell me its bad.. while blanking out the #n/A as i'm comparing 2 sets of data against each other. Thanks
    Last edited by amario; 09-01-2005 at 02:16 PM.

  2. #2
    Forum Expert Cutter's Avatar
    Join Date
    05-24-2004
    Location
    Ontario,Canada
    MS-Off Ver
    Excel 2010
    Posts
    6,451
    Not sure if I understand what you need.

    If you're trying to find the result in Column T based on the value in Column P matching the value in A12 then type this:

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,0)),"",VLOOKUP(A12,$P$12:$U$3323,5,0))

    This formula will give you that result but will result in a blank cell if a match for the value in A12 can not be found in P12:P3323

    It's your use of "Good" and "Bad" that I don't understand.

  3. #3
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  4. #4
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  5. #5
    Registered User
    Join Date
    08-31-2005
    Posts
    9
    Thanks.. I got it!

  6. #6
    Registered User
    Join Date
    08-31-2005
    Posts
    9

    ISNA on another formula

    =IF(VLOOKUP(B12,$R$12:$W$2500,3,FALSE)=C12,"Good",(VLOOKUP(B12,$R$12:$W$2500,3,FALSE)-C12))

    How about this one.. basically of the vlookup = C12.. then I want it to tell me its Good.. otherwise if the quanitites do not match.. i want the vlookup in one column to subtract from a corresponding cell.. and I want the ISNA in there in case the cell doesn't exist in other set of data. Thanks

    - Amar

  7. #7
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  8. #8
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  9. #9
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  10. #10
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  11. #11
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  12. #12
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  13. #13
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  14. #14
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  15. #15
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  16. #16
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  17. #17
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  18. #18
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  19. #19
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  20. #20
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  21. #21
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  22. #22
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  23. #23
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  24. #24
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  25. #25
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  26. #26
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  27. #27
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  28. #28
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  29. #29
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  30. #30
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  31. #31
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  32. #32
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  33. #33
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  34. #34
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  35. #35
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  36. #36
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  37. #37
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  38. #38
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  39. #39
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  40. #40
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  41. #41
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  42. #42
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  43. #43
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  44. #44
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  45. #45
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  46. #46
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  47. #47
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  48. #48
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  49. #49
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  50. #50
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  51. #51
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  52. #52
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  53. #53
    Alan
    Guest

    Re: How do I use ISNA on this formula

    =IF(ISNA(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"Bad",VLOOKUP(A12,$P$12:$U$3323,5,FALSE))
    Regards,
    Alan.
    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:
    > http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




  54. #54
    Bob Phillips
    Guest

    Re: How do I use ISNA on this formula

    =IF(isna(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)),"BAD",VLOOKUP(A12,$P$12:$U$3323
    ,5,FALSE))


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "amario" <[email protected]> wrote in
    message news:[email protected]...
    >
    > =IF(VLOOKUP(A12,$P$12:$U$3323,5,FALSE)="Good","Good","BAD")
    >
    >
    > How can I get the ISNA in there.. while maintaining my IF output. I'd
    > like the box to tell me if there was a match.. if not.. then tell me
    > its bad.. while blanking out the #n/A as i'm comparing 2 sets of data
    > against each other. Thanks!
    >
    > - Amar
    >
    >
    > --
    > amario
    > ------------------------------------------------------------------------
    > amario's Profile:

    http://www.excelforum.com/member.php...o&userid=26858
    > View this thread: http://www.excelforum.com/showthread...hreadid=401211
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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