+ Reply to Thread
Results 1 to 5 of 5

Position of a cell in a range

Hybrid View

  1. #1
    Registered User
    Join Date
    09-26-2005
    Posts
    4

    Position of a cell in a range

    I need to return the position of a cell in a list. For example, I have the list:

    A
    B
    C
    D
    E
    F

    I need a funciton that will tell me if D is the first cell, second, third, etc...

    Thanks.

  2. #2
    Forum Contributor
    Join Date
    06-23-2004
    Location
    Houston, TX
    Posts
    571
    Quote Originally Posted by zangief
    I need to return the position of a cell in a list. For example, I have the list:

    A
    B
    C
    D
    E
    F

    I need a funciton that will tell me if D is the first cell, second, third, etc...

    Thanks.
    ASSUMING your entries are in Column A (A1:A6), try this formula


    ="A"&SUMPRODUCT(($A$1:$A$6="D")*(ROW($A$1:$A$6)))

    and see if this is what you need.

    Regards.
    BenjieLop
    Houston, TX

  3. #3
    Aladin Akyurek
    Guest

    Re: Position of a cell in a range



    BenjieLop wrote:
    > zangief Wrote:
    >
    >>I need to return the position of a cell in a list. For example, I have
    >>the list:
    >>
    >>A
    >>B
    >>C
    >>D
    >>E
    >>F
    >>
    >>I need a funciton that will tell me if D is the first cell, second,
    >>third, etc...
    >>
    >>Thanks.

    >
    >
    > ASSUMING your entries are in Column A (A1:A6), try this formula
    >
    >
    > =\"A\"&SUMPRODUCT(($A$1:$A$6=\"D\")*(ROW($A$1:$A$6)))
    >
    > and see if this is what you need.
    >


    What happens if you have more than one D in the target range?

  4. #4
    Forum Contributor
    Join Date
    06-23-2004
    Location
    Houston, TX
    Posts
    571
    << What happens if you have more than one D in the target range? >>

    Unfortunately, the formula I suggested only works for unique entries in a column. Thank you for pointing it out.

    Regards.

  5. #5
    Aladin Akyurek
    Guest

    Re: Position of a cell in a range

    =MATCH("D",A2:A7,0)

    zangief wrote:
    > I need to return the position of a cell in a list. For example, I have
    > the list:
    >
    > A
    > B
    > C
    > D
    > E
    > F
    >
    > I need a funciton that will tell me if D is the first cell, second,
    > third, etc...
    >
    > Thanks.
    >
    >


    --

    [1] The SumProduct function should implicitly coerce the truth values to
    their Excel numeric equivalents.
    [2] The lookup functions should have an optional argument for the return
    value, defaulting to #N/A in its absence.

+ 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