next row formula
Thank you, it worked very well!
"Lars-Åke Aspelin" wrote:
On Wed, 7 Jan 2009 12:47:02 -0800, emm
wrote:
I need a formula on one sheet to reflect a number in another sheet. That
number must be repeated 3 times, then the formula needs to go to the next row
and return the new number.
Sheet 1: 12345
12352
Sheet 2: an example of the outcome I need...
12345
12345
12345
12352
12352
12352
If the first number on Sheet1 is in cell A1, then you can try this
formula in the first row (in any column) on Sheet2
=OFFSET(Sheet1!A$1,INT((ROW()-1)/3),0)
Copy down as far as needed.
Change the "-1" if you want the result to start on some other row.
Hope this helps / Lars-Åke
|