copying incremental rows over columns

aia8998

New Member
Joined
Feb 14, 2012
Messages
10
hello all, i have researched for a day and can't come up with the right formula so any help will be greatly appreciated.

I have data on a spreadsheet listed in rows (name of spreadsheet is Cleared by Returns Data). The information I need is in every 10th cell of the H column.

On a different spreadsheet named "Summary" , in cell L3 I would like a formula that will display the value of cell H2 on the Cleared by Returns Data spreadsheet(the data starts at L3 due to headers) AND when I drag the formula to the right, I would like the formula to increase the cell reference by 10. Meaning cell M3 (of Summary spreadsheet) will now display cell H12 of the Cleared by Returns Data spreadsheet, cell N3 will now display cell H22, and so on.

I have been playing around with the INDEX, INDIRECT, ADDRESS, and OFFSET but just can't seem to come up with the right combination that works when I drag it to the right.
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Hi aia, use this

Code:
Sub test()
Dim lastrowofdata As Long
Dim summarystartrow As Long
summarystartrow = 12
lastrowofdata = ActiveSheet.UsedRange.Rows.Count
Sheets("Cleared By Returns Data").Activate
For i = 2 To lastrowofdata Step 10
    Range("H" & i).Copy
    Sheets("Summary").Activate
    Cells(3, summarystartrow).PasteSpecial
    summarystartrow = summarystartrow + 1
    Sheets("Cleared By Returns Data").Activate
Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,374
Messages
6,124,574
Members
449,173
Latest member
Kon123

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