move cell reference down 1 cell and paste it down 15 cells

plajoie

New Member
Joined
May 28, 2015
Messages
4
i have referenced in sheet 1 cell d37 a number in cell f4 of the sheet survey 1. i would like to copy and paste that reference from survey 1 down 15 cells on sheet 1 while changing the reference from survey 1 by only 1 cell
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
i have referenced in sheet 1 cell d37 a number in cell f4 of the sheet survey 1. i would like to copy and paste that reference from survey 1 down 15 cells on sheet 1 while changing the reference from survey 1 by only 1 cell
Assuming this is a VBA question, this single line of code should do what you asked...
Code:
Sheets("Sheet1").Range("D31").Copy Sheets("Sheet1").Range("D31").Resize(15)
 
Upvote 0
i have referenced in sheet 1 cell d37 a number in cell f4 of the sheet survey 1. i would like to copy and paste that reference from survey 1 down 15 cells on sheet 1 while changing the reference from survey 1 by only 1 cell

Assuming that 1 cell is 1 cell down ('F5', 'F6', ...) and you're copying the formula from Sheet1 'D37' and pasting it to Sheet1 'D52', 'D67', ... and so on, maybe this formula could work
Code:
=INDEX(survey1!F:F,INT((ROWS(A$1:A1)-1)/15)+4)
 
Upvote 0
Assuming that 1 cell is 1 cell down ('F5', 'F6', ...) and you're copying the formula from Sheet1 'D37' and pasting it to Sheet1 'D52', 'D67', ... and so on, maybe this formula could work
Code:
=INDEX(survey1!F:F,INT((ROWS(A$1:A1)-1)/15)+4)

that did not work. I got a #ref!. you understand what i need exactly
 
Upvote 0
Try checking the spelling of the sheet name. Maybe there's a space in it that I have not considered like 'survey 1'.
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top