+ Reply to Thread
Results 1 to 29 of 29

How do I change the range?

  1. #1
    Registered User
    Join Date
    04-17-2004
    Posts
    39

    Question How do I change the range?

    Hi

    How does this formula really work?

    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1 3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))

    I need to be able to manipulate the formula should I wish to reduce the range from say 999 to 500.

    I changing all the $999 to $500

    and went to 13DBC worksheet, and deleted all the formulas from row 501 (this messed up the formula)

    I see there is some kind of blue line that surrounds '13DBC'! A09:S1001

    It seems to be linked to make the INDEX formula work. I also tried reducing that, and it messed up my formula's

    What is the best procedure to reduce the range in the formula above and in the area range in 13DBC?

  2. #2
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  3. #3
    Registered User
    Join Date
    04-17-2004
    Posts
    39
    Thanks for the help

    I will look into that tonight.

  4. #4
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  5. #5
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  6. #6
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  7. #7
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  8. #8
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  9. #9
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  10. #10
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  11. #11
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  12. #12
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  13. #13
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  14. #14
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  15. #15
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  16. #16
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  17. #17
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  18. #18
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  19. #19
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  20. #20
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  21. #21
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  22. #22
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  23. #23
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  24. #24
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  25. #25
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  26. #26
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  27. #27
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  28. #28
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




  29. #29
    Bob Phillips
    Guest

    Re: How do I change the range?

    Best to start by breaking it up.

    First create a name, Insert>Name>Define..., of say cCount, with a RefersTo
    value of ='13DBC'!$C$10:$C$999.

    Then create another name of say cSum with a RefersTo value of
    =SUMPRODUCT(SMALL(ROW(cCount)*(cCount<>""),ROW()-9+COUNTA(cCount)-COUNTIF(cC
    ount,">0")))

    then your formula becomes
    =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,cSum,COLUMN()-1)),"",INDEX('13DBC'!$A$
    1:$W$999,cSum,COLUMN()-1))

    You now have a much simpler formula that you can change the ranges here and
    in the cCount name.

    --

    HTH

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


    "sonar" <[email protected]> wrote in
    message news:[email protected]...
    >
    > Hi
    >
    > How does this formula really work?
    >
    > =IF(ISERROR(INDEX('13DBC'!$A$1:$W$999,SUMPRODUCT(S
    >

    MALL(ROW('13DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'
    !$C$10:$C$999)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1)),"",INDEX('1
    3DBC'!$A$1:$W$999,SUMPRODUCT(SMALL(ROW('1
    >

    3DBC'!$10:$999)*('13DBC'!$C$10:$C$999<>""),ROW()-9+COUNTA('13DBC'!$C$10:$C$9
    99)-COUNTIF('13DBC'!$C$10:$C$999,">0"))),COLUMN()-1))
    >
    > I need to be able to manipulate the formula should I wish to reduce the
    > range from say 999 to 500.
    >
    > I changing all the $999 to $500
    >
    > and went to 13DBC worksheet, and deleted all the formulas from row 501
    > (this messed up the formula)
    >
    > I see there is some kind of blue line that surrounds '13DBC'!
    > A09:S1001
    >
    > It seems to be linked to make the INDEX formula work. I also tried
    > reducing that, and it messed up my formula's
    >
    > What is the best procedure to reduce the range in the formula above and
    > in the area range in 13DBC?
    >
    >
    > --
    > sonar
    > ------------------------------------------------------------------------
    > sonar's Profile:

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




+ 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