+ Reply to Thread
Results 1 to 5 of 5

Fill Handle Across Columns

  1. #1
    Registered User
    Join Date
    08-05-2005
    Posts
    11

    Fill Handle Across Columns

    How do I get cell references to change the number (column) not letter (row) when I use the fill handle across rows?

    e.g. If I have a cell reference in Sheet 1 that refers to A2 in Sheet 2 and I want to use the fill handle to take values from A3, A4, A5 of Sheet 2 and run them as headings across the columns of Sheet 1 - how do I do this?

    If you just drag the fill handle it uses A2, B2, C2, D2

    Thanks
    Last edited by SenojNW; 08-07-2005 at 10:54 PM.

  2. #2
    Peo Sjoblom
    Guest

    Re: Fill Handle Across Columns

    You need a formula

    =OFFSET(Sheet1!$A$1,COLUMN(A:A)-1,)

    you can also copy and paste special and select transpose

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "SenojNW" <[email protected]> wrote in
    message news:[email protected]...
    >
    > How do I get cell references to change the number (column) not letter
    > (row) when I use the fill handle across rows?
    >
    > e.g. If I have a cell reference in Sheet 1 that refers to A2 in Sheet 2
    > and I want to use the fill handle to take values from A3, A4, A5 of
    > Sheet 2 and run them as headings across the columns of Sheet 1 - how do
    > I do this?
    >
    > If you just drag the fill handle it uses A2, B2, C2, D2
    >
    > Thanks
    >
    >
    > --
    > SenojNW
    > ------------------------------------------------------------------------
    > SenojNW's Profile:
    > http://www.excelforum.com/member.php...o&userid=25958
    > View this thread: http://www.excelforum.com/showthread...hreadid=393746
    >



  3. #3
    Biff
    Guest

    Re: Fill Handle Across Columns

    Hi!

    Try this:

    =INDIRECT("Sheet2!A"&COLUMN(B:B))

    Evaluates to =Sheet2!A2

    As you drag copy across the COLUMN() argument will increment leading to:

    =Sheet2!A2.....=Sheet2!A3.....=Sheet2!A4.....=Sheet2!A5.....etc

    Biff

    "SenojNW" <[email protected]> wrote in
    message news:[email protected]...
    >
    > How do I get cell references to change the number (column) not letter
    > (row) when I use the fill handle across rows?
    >
    > e.g. If I have a cell reference in Sheet 1 that refers to A2 in Sheet 2
    > and I want to use the fill handle to take values from A3, A4, A5 of
    > Sheet 2 and run them as headings across the columns of Sheet 1 - how do
    > I do this?
    >
    > If you just drag the fill handle it uses A2, B2, C2, D2
    >
    > Thanks
    >
    >
    > --
    > SenojNW
    > ------------------------------------------------------------------------
    > SenojNW's Profile:
    > http://www.excelforum.com/member.php...o&userid=25958
    > View this thread: http://www.excelforum.com/showthread...hreadid=393746
    >




  4. #4
    Registered User
    Join Date
    08-05-2005
    Posts
    11

    Thanks

    The INDIRECT function seems to work well...

    Can you explain the formula a bit more for me - I like to understand what it is doing...

  5. #5
    Biff
    Guest

    Re: Fill Handle Across Columns

    Hi!

    =INDIRECT("Sheet2!A"&COLUMN(B:B))

    The Indirect function takes TEXT representations of references and
    "converts" them to useable formula references.

    In this example the TEXT string "Sheet2!A" is concatenated with the result
    of the COLUMN() function to produce the TEXT representation that INDIRECT
    can use as a formula reference.

    The COLUMN() function returns the column NUMBER of it's argument. In this
    case column B is the second column so:

    COLUMN(B:B) = 2

    You could also express that as:

    COLUMN(B1)

    The Column function will ignore the ROW reference, in this case, 1.

    So, Indirect uses the TEXT string:

    "Sheet2!A2"

    and "converts" it to the useable formula reference:

    =Sheet2!A2

    Biff

    "SenojNW" <[email protected]> wrote in
    message news:[email protected]...
    >
    > The INDIRECT function seems to work well...
    >
    > Can you explain the formula a bit more for me - I like to understand
    > what it is doing...
    >
    >
    > --
    > SenojNW
    > ------------------------------------------------------------------------
    > SenojNW's Profile:
    > http://www.excelforum.com/member.php...o&userid=25958
    > View this thread: http://www.excelforum.com/showthread...hreadid=393746
    >




+ 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