+ Reply to Thread
Results 1 to 5 of 5

Extending Formulas

  1. #1
    Forum Contributor
    Join Date
    07-08-2009
    Location
    Missouri
    MS-Off Ver
    Excel 2003
    Posts
    183

    Extending Formulas

    I want to extend a formula like so- =Sheet2!M3
    =Sheet2!M60
    =Sheet2!M117

    Basically I want it to go up in increments of 57 when I copy the formula down. Is there an easier way to do this rather than typing it over and over again? I looked on an older post and saw some information about OFFSET and INDEX but couldn't figure out exactly how that worked.

    Thanks for the help!
    Last edited by mrgillus; 07-14-2009 at 10:17 AM.

  2. #2
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606

    Re: Extending Formulas

    Not sure about INDEX, but if this were placed in A1 and copied down it should work:

    =OFFSET(Sheet2!$M$3,57*(ROW()-1),0,1,1)

  3. #3
    Forum Contributor
    Join Date
    07-08-2009
    Location
    Missouri
    MS-Off Ver
    Excel 2003
    Posts
    183

    Re: Extending Formulas

    Yes, That works. One problem, It does not start at the first box I'm trying to reference which would be Sheet2!M3. Instead it starts at M117 and then copies down from there correctly.

    How do I fix it so that it starts at M3 and then goes down?

    Thanks again

  4. #4
    Forum Contributor
    Join Date
    07-08-2009
    Location
    Missouri
    MS-Off Ver
    Excel 2003
    Posts
    183

    Re: Extending Formulas

    Okay, I changed it as follows and it starts at the correct cell.
    =OFFSET(Forms!$M$3,57*(ROW()-3),0,1,1)


    I figured this out although I don't understand how the ROW function works..

    Thanks again for your help though!

  5. #5
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606

    Re: Extending Formulas

    Don't forget Excel Help. ROW() just returns the row number of the cell in which it is placed. So, in A4, ROW() returns 4.

+ 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