+ Reply to Thread
Results 1 to 32 of 32

Find first positive value in row 3 and return date from row 1

  1. #1
    Registered User
    Join Date
    02-04-2004
    Posts
    4

    Find first positive value in row 3 and return date from row 1

    Hi everyone, so here's the issue:

    I have a sheet that tracks cash flow in & out of a business unit. In row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.] and in row 3 I have a series of values, starting out negative but at some point (depending on a couple of variables) turning positive [e.g. (1346.02), (574.16), 211.86].

    What I need to do is in cell A5, return the date from row 1 that corresponds to the first positive value in row 3. In the above example it would return 7/28/05

    Thank you in advance for any help you can provide.
    rlaw68

  2. #2
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  3. #3
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  4. #4
    Registered User
    Join Date
    02-04-2004
    Posts
    4

    Smile Thanks!

    Thanks to Bob & Biff for the suggestions. I ended up using a modified version of Bob's as my actual calculation/range was a bit more complex than my example. I appreciate the quick response.

    Sincerely,
    rlaw68

  5. #5
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  6. #6
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  7. #7
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  8. #8
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  9. #9
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  10. #10
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  11. #11
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  12. #12
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  13. #13
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  14. #14
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  15. #15
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  16. #16
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  17. #17
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  18. #18
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  19. #19
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  20. #20
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  21. #21
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  22. #22
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  23. #23
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  24. #24
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  25. #25
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  26. #26
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  27. #27
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  28. #28
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  29. #29
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  30. #30
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  31. #31
    Bob Phillips
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    =INDEX(1:1,,MIN(IF(3:3>0,COLUMN(3:3))))

    This is an array formula so commit with Ctrl-Shift-Enter.

    --
    HTH

    Bob Phillips

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:

    http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




  32. #32
    Biff
    Guest

    Re: Find first positive value in row 3 and return date from row 1

    Hi!

    Dates in A1:C1

    Values in A3:C3

    Enter this formula in A5 using the key combo of CTRL,SHIFT,ENTER:

    =INDEX(A1:C1,MATCH(TRUE,A3:C3>0,0))

    Biff

    "rlaw68" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi everyone, so here's the issue:
    >
    > I have a sheet that tracks cash flow in & out of a business unit. In
    > row 1 I have a series of dates [e.g. 7/14/05, 7/21/05, 7/28/05 etc.]
    > and in row 3 I have a series of values, starting out negative but at
    > some point (depending on a couple of variables) turning positive [e.g.
    > (1346.02), (574.16), 211.86].
    >
    > What I need to do is in cell A5, return the date from row 1 that
    > corresponds to the first positive value in row 3. In the above example
    > it would return 7/28/05
    >
    > Thank you in advance for any help you can provide.
    > rlaw68
    >
    >
    > --
    > rlaw68
    > ------------------------------------------------------------------------
    > rlaw68's Profile:
    > http://www.excelforum.com/member.php...fo&userid=5744
    > View this thread: http://www.excelforum.com/showthread...hreadid=389607
    >




+ 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