+ Reply to Thread
Results 1 to 22 of 22

unique alpha's in order

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    06-15-2004
    Posts
    246

    unique alpha's in order

    Hi i have the following which gives me unique alpha's in order but when it has produced all possible entry's it diplays an error.

    =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))


    I have tried using the below but it didnt work and it made the cell very large
    =if(iserror(formula)=true,"",formula


    Can anyone help?

  2. #2
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  3. #3
    Forum Expert
    Join Date
    06-18-2004
    Location
    Canada
    MS-Off Ver
    Office 2016
    Posts
    1,474
    Here's another way...

    C1:

    =SUMPRODUCT((A1:A6<>"")/COUNTIF(A1:A6,A1:A6&""))

    B1, copied down:

    =IF(ROWS($B$1:B1)<=$C$1,INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"")

    ...confirmed with CONTROL+SHIFT+ENTER.

    Hope this helps!

    Quote Originally Posted by ceemo
    Hi i have the following which gives me unique alpha's in order but when it has produced all possible entry's it diplays an error.

    =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:A$6),0))


    I have tried using the below but it didnt work and it made the cell very large
    =if(iserror(formula)=true,"",formula


    Can anyone help?

  4. #4
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  5. #5
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  6. #6
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  7. #7
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  8. #8
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  9. #9
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  10. #10
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  11. #11
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  12. #12
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  13. #13
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  14. #14
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  15. #15
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  16. #16
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  17. #17
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  18. #18
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  19. #19
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  20. #20
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  21. #21
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




  22. #22
    Biff
    Guest

    Re: unique alpha's in order

    Hi!

    With long formulas like that it's easier to use conditional formatting to
    hide the errors.

    Select the cell containing the formula
    Conditional Formatting
    Formula is: =ISERROR(cell_reference)
    As the format, set the font color to be the same as the background color.

    If you want the error trap (makes the formula twice as long and twice as
    long to process):

    =IF(ISERROR(MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)),"",INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0)))

    Biff

    "ceemo" <ceemo.1tv72x_1124208631.9465@excelforum-nospam.com> wrote in
    message news:ceemo.1tv72x_1124208631.9465@excelforum-nospam.com...
    >
    > Hi i have the following which gives me unique alpha's in order but when
    > it has produced all possible entry's it diplays an error.
    >
    > =INDEX($A$1:$A$6,MATCH(SMALL(IF(($A$1:$A$6<>"")*(COUNTIF(OFFSET($A$1,0,0,ROW($A$1:$A$6)-ROW($A$1)+1),$A$1:$A$6)=1),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6)),ROWS($B$1:B1)),COUNTIF($A$1:$A$6,"<"&$A$1:$A$6),0))
    >
    >
    > I have tried using the below but it didnt work and it made the cell
    > very large
    > =if(iserror(formula)=true,"",formula
    >
    >
    > Can anyone help?
    >
    >
    > --
    > ceemo
    > ------------------------------------------------------------------------
    > ceemo's Profile:
    > http://www.excelforum.com/member.php...o&userid=10650
    > View this thread: http://www.excelforum.com/showthread...hreadid=396150
    >




+ 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