+ Reply to Thread
Results 1 to 39 of 39

n/a in vlookup/index/match formula

  1. #1
    Forum Contributor
    Join Date
    05-08-2005
    Location
    Australia
    MS-Off Ver
    excel 2019
    Posts
    112

    n/a in vlookup/index/match formula

    Hi,

    I have a formula which works except that if a cell(a53) is blank I get a n/a value. How can I make the value be blank when the value in a53 is blank as well.

    the formula is -

    =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)

    if a53 is blank the cell result is n/a

    thanks

  2. #2
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  3. #3
    Forum Contributor
    Join Date
    05-08-2005
    Location
    Australia
    MS-Off Ver
    excel 2019
    Posts
    112
    Hi Mangesh

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52 :i61,2,false)
    )

    this works, however

    a53 is a date

    when I put in the next cell (a53+1) as the next day it doesn't work

    ie.
    =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    h52:i61,2,false)
    )

    any ideas.

    andrewm

  4. #4
    Forum Contributor
    Join Date
    05-08-2005
    Location
    Australia
    MS-Off Ver
    excel 2019
    Posts
    112
    sorry mangesh,

    the formula i used

    =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    h52 :i61,2,false)
    )

    thanks

    andrewm

  5. #5
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  6. #6
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  7. #7
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  8. #8
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  9. #9
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  10. #10
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  11. #11
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  12. #12
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  13. #13
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  14. #14
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  15. #15
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  16. #16
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  17. #17
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  18. #18
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  19. #19
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  20. #20
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  21. #21
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  22. #22
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  23. #23
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  24. #24
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  25. #25
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  26. #26
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  27. #27
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  28. #28
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  29. #29
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  30. #30
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  31. #31
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  32. #32
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  33. #33
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  34. #34
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  35. #35
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  36. #36
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  37. #37
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    )

    Mangesh



    "andrewm" <andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com> wrote in
    message news:andrewm.1rsi7l_1120723570.4045@excelforum-nospam.com...
    >
    > Hi,
    >
    > I have a formula which works except that if a cell(a53) is blank I get
    > a n/a value. How can I make the value be blank when the value in a53 is
    > blank as well.
    >
    > the formula is -
    >
    > =vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52:i61,2,false)
    >
    > if a53 is blank the cell result is n/a
    >
    > thanks
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  38. #38
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Hi,

    I did not get you. You need to check A54, or what is it. What does A53+1
    mean. In that case it is no longer blank.

    If A54 is what you want to check, then
    =if((A54)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),h52
    :i61,2,false))


    Mangesh




    "andrewm" <andrewm.1rsqii_1120734388.818@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqii_1120734388.818@excelforum-nospam.com...
    >
    > sorry mangesh,
    >
    > the formula i used
    >
    > =if((A53+1)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52 :i61,2,false)
    > )
    >
    > thanks
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




  39. #39
    Mangesh Yadav
    Guest

    Re: n/a in vlookup/index/match formula

    Maybe, in the next cell you should put
    =IF(A53="","",A53+1)

    And then follow it up with your VLOOKUP

    Mangesh


    "andrewm" <andrewm.1rsqih_1120734388.0641@excelforum-nospam.com> wrote in
    message news:andrewm.1rsqih_1120734388.0641@excelforum-nospam.com...
    >
    > Hi Mangesh
    >
    > =if(A53="","",vlookup(index(f52:f61,(match(a53,e52:e61,0))),h52
    > :i61,2,false)
    > )
    >
    > this works, however
    >
    > a53 is a date
    >
    > when I put in the next cell (a53+1) as the next day it doesn't work
    >
    > ie.
    > =if((A53+)="","",vlookup(index(f52:f61,(match((a53+1),e52:e61,0))),
    > h52:i61,2,false)
    > )
    >
    > any ideas.
    >
    > andrewm
    >
    >
    > --
    > andrewm
    > ------------------------------------------------------------------------
    > andrewm's Profile:

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




+ 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