+ Reply to Thread
Results 1 to 26 of 26

Absolute References in cell formula

  1. #1
    Bernie Deitrick
    Guest

    Re: Absolute References in cell formula

    You need to use a formula like

    =IF(x=y,INDEX($B$3:$IQ$700,INT((ROW()-ROW($B$3))/250)+1,MOD(ROW()-ROW($B$3),
    250)+1),"")

    Change the $B$3:$IQ$700 to your actual table, and all the other references
    to $B$3 to the upper left cell of your table. Also, the 250 has to be the
    exact column count of your table.

    HTH,
    Bernie
    MS Excel MVP


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    > I understand the basic principles of absolute references when copying an
    > dpasting formula's.
    >
    > However I have a set of data that is contained in around 700 rows and

    takes
    > up most of the 256 columns. What I want to do is transfer this to a single
    > column a row at a time based upon a set of criteria. For instnace if the
    > criteria is met then include the first row of data in the first 250 cells

    of
    > the column. if the criteria is not met then the cells are "". Continue

    this
    > down for each of the 700 rows
    >
    > What I cant do is work out how to copy a formula down the page (I can

    freeze
    > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy

    the
    > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a

    to
    > b to c to d etc.
    >
    > Any ideas ? I hope I have explained this OK




  2. #2
    Duke Carey
    Guest

    RE: Absolute References in cell formula

    How about

    INDIRECT("b"&ROW())


    "ah666" wrote:

    > I understand the basic principles of absolute references when copying an
    > dpasting formula's.
    >
    > However I have a set of data that is contained in around 700 rows and takes
    > up most of the 256 columns. What I want to do is transfer this to a single
    > column a row at a time based upon a set of criteria. For instnace if the
    > criteria is met then include the first row of data in the first 250 cells of
    > the column. if the criteria is not met then the cells are "". Continue this
    > down for each of the 700 rows
    >
    > What I cant do is work out how to copy a formula down the page (I can freeze
    > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    > b to c to d etc.
    >
    > Any ideas ? I hope I have explained this OK


  3. #3
    Duke Carey
    Guest

    RE: Absolute References in cell formula

    That was posted before it should have been

    How about:

    =IF(x=y,INDIRECT("A"&ROW())-800,"")

    which works if you're starting in row 801.


    "Duke Carey" wrote:

    > How about
    >
    > INDIRECT("b"&ROW())
    >
    >
    > "ah666" wrote:
    >
    > > I understand the basic principles of absolute references when copying an
    > > dpasting formula's.
    > >
    > > However I have a set of data that is contained in around 700 rows and takes
    > > up most of the 256 columns. What I want to do is transfer this to a single
    > > column a row at a time based upon a set of criteria. For instnace if the
    > > criteria is met then include the first row of data in the first 250 cells of
    > > the column. if the criteria is not met then the cells are "". Continue this
    > > down for each of the 700 rows
    > >
    > > What I cant do is work out how to copy a formula down the page (I can freeze
    > > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    > > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    > > b to c to d etc.
    > >
    > > Any ideas ? I hope I have explained this OK


  4. #4
    RagDyeR
    Guest

    Re: Absolute References in cell formula

    Try this:

    =IF($B$2=$B$3,OFFSET($A$1,,ROW(A1)-1),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a
    to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK



  5. #5
    RagDyeR
    Guest

    Re: Absolute References in cell formula

    Try this also, since Index is not volatile compared to Offset:

    =IF($B$2=$B$3,INDEX($1:$1,,ROW(A1)),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "RagDyeR" <[email protected]> wrote in message
    news:[email protected]...
    Try this:

    =IF($B$2=$B$3,OFFSET($A$1,,ROW(A1)-1),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a
    to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK




  6. #6
    Duke Carey
    Guest

    RE: Absolute References in cell formula

    That was posted before it should have been

    How about:

    =IF(x=y,INDIRECT("A"&ROW())-800,"")

    which works if you're starting in row 801.


    "Duke Carey" wrote:

    > How about
    >
    > INDIRECT("b"&ROW())
    >
    >
    > "ah666" wrote:
    >
    > > I understand the basic principles of absolute references when copying an
    > > dpasting formula's.
    > >
    > > However I have a set of data that is contained in around 700 rows and takes
    > > up most of the 256 columns. What I want to do is transfer this to a single
    > > column a row at a time based upon a set of criteria. For instnace if the
    > > criteria is met then include the first row of data in the first 250 cells of
    > > the column. if the criteria is not met then the cells are "". Continue this
    > > down for each of the 700 rows
    > >
    > > What I cant do is work out how to copy a formula down the page (I can freeze
    > > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    > > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    > > b to c to d etc.
    > >
    > > Any ideas ? I hope I have explained this OK


  7. #7
    RagDyeR
    Guest

    Re: Absolute References in cell formula

    Try this also, since Index is not volatile compared to Offset:

    =IF($B$2=$B$3,INDEX($1:$1,,ROW(A1)),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "RagDyeR" <[email protected]> wrote in message
    news:[email protected]...
    Try this:

    =IF($B$2=$B$3,OFFSET($A$1,,ROW(A1)-1),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a
    to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK




  8. #8
    RagDyeR
    Guest

    Re: Absolute References in cell formula

    Try this:

    =IF($B$2=$B$3,OFFSET($A$1,,ROW(A1)-1),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a
    to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK



  9. #9
    Duke Carey
    Guest

    RE: Absolute References in cell formula

    How about

    INDIRECT("b"&ROW())


    "ah666" wrote:

    > I understand the basic principles of absolute references when copying an
    > dpasting formula's.
    >
    > However I have a set of data that is contained in around 700 rows and takes
    > up most of the 256 columns. What I want to do is transfer this to a single
    > column a row at a time based upon a set of criteria. For instnace if the
    > criteria is met then include the first row of data in the first 250 cells of
    > the column. if the criteria is not met then the cells are "". Continue this
    > down for each of the 700 rows
    >
    > What I cant do is work out how to copy a formula down the page (I can freeze
    > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    > b to c to d etc.
    >
    > Any ideas ? I hope I have explained this OK


  10. #10
    Bernie Deitrick
    Guest

    Re: Absolute References in cell formula

    You need to use a formula like

    =IF(x=y,INDEX($B$3:$IQ$700,INT((ROW()-ROW($B$3))/250)+1,MOD(ROW()-ROW($B$3),
    250)+1),"")

    Change the $B$3:$IQ$700 to your actual table, and all the other references
    to $B$3 to the upper left cell of your table. Also, the 250 has to be the
    exact column count of your table.

    HTH,
    Bernie
    MS Excel MVP


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    > I understand the basic principles of absolute references when copying an
    > dpasting formula's.
    >
    > However I have a set of data that is contained in around 700 rows and

    takes
    > up most of the 256 columns. What I want to do is transfer this to a single
    > column a row at a time based upon a set of criteria. For instnace if the
    > criteria is met then include the first row of data in the first 250 cells

    of
    > the column. if the criteria is not met then the cells are "". Continue

    this
    > down for each of the 700 rows
    >
    > What I cant do is work out how to copy a formula down the page (I can

    freeze
    > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy

    the
    > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a

    to
    > b to c to d etc.
    >
    > Any ideas ? I hope I have explained this OK




  11. #11
    Bernie Deitrick
    Guest

    Re: Absolute References in cell formula

    You need to use a formula like

    =IF(x=y,INDEX($B$3:$IQ$700,INT((ROW()-ROW($B$3))/250)+1,MOD(ROW()-ROW($B$3),
    250)+1),"")

    Change the $B$3:$IQ$700 to your actual table, and all the other references
    to $B$3 to the upper left cell of your table. Also, the 250 has to be the
    exact column count of your table.

    HTH,
    Bernie
    MS Excel MVP


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    > I understand the basic principles of absolute references when copying an
    > dpasting formula's.
    >
    > However I have a set of data that is contained in around 700 rows and

    takes
    > up most of the 256 columns. What I want to do is transfer this to a single
    > column a row at a time based upon a set of criteria. For instnace if the
    > criteria is met then include the first row of data in the first 250 cells

    of
    > the column. if the criteria is not met then the cells are "". Continue

    this
    > down for each of the 700 rows
    >
    > What I cant do is work out how to copy a formula down the page (I can

    freeze
    > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy

    the
    > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a

    to
    > b to c to d etc.
    >
    > Any ideas ? I hope I have explained this OK




  12. #12
    Duke Carey
    Guest

    RE: Absolute References in cell formula

    How about

    INDIRECT("b"&ROW())


    "ah666" wrote:

    > I understand the basic principles of absolute references when copying an
    > dpasting formula's.
    >
    > However I have a set of data that is contained in around 700 rows and takes
    > up most of the 256 columns. What I want to do is transfer this to a single
    > column a row at a time based upon a set of criteria. For instnace if the
    > criteria is met then include the first row of data in the first 250 cells of
    > the column. if the criteria is not met then the cells are "". Continue this
    > down for each of the 700 rows
    >
    > What I cant do is work out how to copy a formula down the page (I can freeze
    > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    > b to c to d etc.
    >
    > Any ideas ? I hope I have explained this OK


  13. #13
    Duke Carey
    Guest

    RE: Absolute References in cell formula

    That was posted before it should have been

    How about:

    =IF(x=y,INDIRECT("A"&ROW())-800,"")

    which works if you're starting in row 801.


    "Duke Carey" wrote:

    > How about
    >
    > INDIRECT("b"&ROW())
    >
    >
    > "ah666" wrote:
    >
    > > I understand the basic principles of absolute references when copying an
    > > dpasting formula's.
    > >
    > > However I have a set of data that is contained in around 700 rows and takes
    > > up most of the 256 columns. What I want to do is transfer this to a single
    > > column a row at a time based upon a set of criteria. For instnace if the
    > > criteria is met then include the first row of data in the first 250 cells of
    > > the column. if the criteria is not met then the cells are "". Continue this
    > > down for each of the 700 rows
    > >
    > > What I cant do is work out how to copy a formula down the page (I can freeze
    > > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    > > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    > > b to c to d etc.
    > >
    > > Any ideas ? I hope I have explained this OK


  14. #14
    RagDyeR
    Guest

    Re: Absolute References in cell formula

    Try this:

    =IF($B$2=$B$3,OFFSET($A$1,,ROW(A1)-1),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a
    to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK



  15. #15
    RagDyeR
    Guest

    Re: Absolute References in cell formula

    Try this also, since Index is not volatile compared to Offset:

    =IF($B$2=$B$3,INDEX($1:$1,,ROW(A1)),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "RagDyeR" <[email protected]> wrote in message
    news:[email protected]...
    Try this:

    =IF($B$2=$B$3,OFFSET($A$1,,ROW(A1)-1),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a
    to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK




  16. #16
    RagDyeR
    Guest

    Re: Absolute References in cell formula

    Try this also, since Index is not volatile compared to Offset:

    =IF($B$2=$B$3,INDEX($1:$1,,ROW(A1)),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "RagDyeR" <[email protected]> wrote in message
    news:[email protected]...
    Try this:

    =IF($B$2=$B$3,OFFSET($A$1,,ROW(A1)-1),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a
    to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK




  17. #17
    RagDyeR
    Guest

    Re: Absolute References in cell formula

    Try this:

    =IF($B$2=$B$3,OFFSET($A$1,,ROW(A1)-1),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a
    to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK



  18. #18
    Duke Carey
    Guest

    RE: Absolute References in cell formula

    That was posted before it should have been

    How about:

    =IF(x=y,INDIRECT("A"&ROW())-800,"")

    which works if you're starting in row 801.


    "Duke Carey" wrote:

    > How about
    >
    > INDIRECT("b"&ROW())
    >
    >
    > "ah666" wrote:
    >
    > > I understand the basic principles of absolute references when copying an
    > > dpasting formula's.
    > >
    > > However I have a set of data that is contained in around 700 rows and takes
    > > up most of the 256 columns. What I want to do is transfer this to a single
    > > column a row at a time based upon a set of criteria. For instnace if the
    > > criteria is met then include the first row of data in the first 250 cells of
    > > the column. if the criteria is not met then the cells are "". Continue this
    > > down for each of the 700 rows
    > >
    > > What I cant do is work out how to copy a formula down the page (I can freeze
    > > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    > > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    > > b to c to d etc.
    > >
    > > Any ideas ? I hope I have explained this OK


  19. #19
    ah666
    Guest

    Absolute References in cell formula

    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK

  20. #20
    Duke Carey
    Guest

    RE: Absolute References in cell formula

    How about

    INDIRECT("b"&ROW())


    "ah666" wrote:

    > I understand the basic principles of absolute references when copying an
    > dpasting formula's.
    >
    > However I have a set of data that is contained in around 700 rows and takes
    > up most of the 256 columns. What I want to do is transfer this to a single
    > column a row at a time based upon a set of criteria. For instnace if the
    > criteria is met then include the first row of data in the first 250 cells of
    > the column. if the criteria is not met then the cells are "". Continue this
    > down for each of the 700 rows
    >
    > What I cant do is work out how to copy a formula down the page (I can freeze
    > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    > b to c to d etc.
    >
    > Any ideas ? I hope I have explained this OK


  21. #21
    Bernie Deitrick
    Guest

    Re: Absolute References in cell formula

    You need to use a formula like

    =IF(x=y,INDEX($B$3:$IQ$700,INT((ROW()-ROW($B$3))/250)+1,MOD(ROW()-ROW($B$3),
    250)+1),"")

    Change the $B$3:$IQ$700 to your actual table, and all the other references
    to $B$3 to the upper left cell of your table. Also, the 250 has to be the
    exact column count of your table.

    HTH,
    Bernie
    MS Excel MVP


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    > I understand the basic principles of absolute references when copying an
    > dpasting formula's.
    >
    > However I have a set of data that is contained in around 700 rows and

    takes
    > up most of the 256 columns. What I want to do is transfer this to a single
    > column a row at a time based upon a set of criteria. For instnace if the
    > criteria is met then include the first row of data in the first 250 cells

    of
    > the column. if the criteria is not met then the cells are "". Continue

    this
    > down for each of the 700 rows
    >
    > What I cant do is work out how to copy a formula down the page (I can

    freeze
    > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy

    the
    > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a

    to
    > b to c to d etc.
    >
    > Any ideas ? I hope I have explained this OK




  22. #22
    Bernie Deitrick
    Guest

    Re: Absolute References in cell formula

    You need to use a formula like

    =IF(x=y,INDEX($B$3:$IQ$700,INT((ROW()-ROW($B$3))/250)+1,MOD(ROW()-ROW($B$3),
    250)+1),"")

    Change the $B$3:$IQ$700 to your actual table, and all the other references
    to $B$3 to the upper left cell of your table. Also, the 250 has to be the
    exact column count of your table.

    HTH,
    Bernie
    MS Excel MVP


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    > I understand the basic principles of absolute references when copying an
    > dpasting formula's.
    >
    > However I have a set of data that is contained in around 700 rows and

    takes
    > up most of the 256 columns. What I want to do is transfer this to a single
    > column a row at a time based upon a set of criteria. For instnace if the
    > criteria is met then include the first row of data in the first 250 cells

    of
    > the column. if the criteria is not met then the cells are "". Continue

    this
    > down for each of the 700 rows
    >
    > What I cant do is work out how to copy a formula down the page (I can

    freeze
    > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy

    the
    > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a

    to
    > b to c to d etc.
    >
    > Any ideas ? I hope I have explained this OK




  23. #23
    Duke Carey
    Guest

    RE: Absolute References in cell formula

    How about

    INDIRECT("b"&ROW())


    "ah666" wrote:

    > I understand the basic principles of absolute references when copying an
    > dpasting formula's.
    >
    > However I have a set of data that is contained in around 700 rows and takes
    > up most of the 256 columns. What I want to do is transfer this to a single
    > column a row at a time based upon a set of criteria. For instnace if the
    > criteria is met then include the first row of data in the first 250 cells of
    > the column. if the criteria is not met then the cells are "". Continue this
    > down for each of the 700 rows
    >
    > What I cant do is work out how to copy a formula down the page (I can freeze
    > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    > b to c to d etc.
    >
    > Any ideas ? I hope I have explained this OK


  24. #24
    Duke Carey
    Guest

    RE: Absolute References in cell formula

    That was posted before it should have been

    How about:

    =IF(x=y,INDIRECT("A"&ROW())-800,"")

    which works if you're starting in row 801.


    "Duke Carey" wrote:

    > How about
    >
    > INDIRECT("b"&ROW())
    >
    >
    > "ah666" wrote:
    >
    > > I understand the basic principles of absolute references when copying an
    > > dpasting formula's.
    > >
    > > However I have a set of data that is contained in around 700 rows and takes
    > > up most of the 256 columns. What I want to do is transfer this to a single
    > > column a row at a time based upon a set of criteria. For instnace if the
    > > criteria is met then include the first row of data in the first 250 cells of
    > > the column. if the criteria is not met then the cells are "". Continue this
    > > down for each of the 700 rows
    > >
    > > What I cant do is work out how to copy a formula down the page (I can freeze
    > > the criteria no problem) but how do I say if x=y,a1,"" next cell down
    > > x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    > > formula down the page the numebr increases a2, a3 a4 etc. I cant get the a to
    > > b to c to d etc.
    > >
    > > Any ideas ? I hope I have explained this OK


  25. #25
    RagDyeR
    Guest

    Re: Absolute References in cell formula

    Try this:

    =IF($B$2=$B$3,OFFSET($A$1,,ROW(A1)-1),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a
    to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK



  26. #26
    RagDyeR
    Guest

    Re: Absolute References in cell formula

    Try this also, since Index is not volatile compared to Offset:

    =IF($B$2=$B$3,INDEX($1:$1,,ROW(A1)),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "RagDyeR" <[email protected]> wrote in message
    news:[email protected]...
    Try this:

    =IF($B$2=$B$3,OFFSET($A$1,,ROW(A1)-1),"")
    --

    HTH,

    RD
    ==============================================
    Please keep all correspondence within the Group, so all may benefit!
    ==============================================


    "ah666" <[email protected]> wrote in message
    news:[email protected]...
    I understand the basic principles of absolute references when copying an
    dpasting formula's.

    However I have a set of data that is contained in around 700 rows and takes
    up most of the 256 columns. What I want to do is transfer this to a single
    column a row at a time based upon a set of criteria. For instnace if the
    criteria is met then include the first row of data in the first 250 cells of
    the column. if the criteria is not met then the cells are "". Continue this
    down for each of the 700 rows

    What I cant do is work out how to copy a formula down the page (I can freeze
    the criteria no problem) but how do I say if x=y,a1,"" next cell down
    x=y,b1,"", next cell down x=y,c1,"". Every time i try to replicate/copy the
    formula down the page the numebr increases a2, a3 a4 etc. I cant get the a
    to
    b to c to d etc.

    Any ideas ? I hope I have explained this OK




+ 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