vote up 0 vote down star

Hi There

I'm trying to copy and paste a range, to create a 28 by 28 grid of numbers "rotating" the values so that each time the range is pasted into the next column, the range is moves down by one row and the last value "overflows" back to the top of the next row, I've got this far but am stumped on the overflow part (i' relative newbie to VBA)

Sub Test()

Dim oRange As Range
Set oRange = ActiveSheet.Range("A1:A28") 

Dim i As Integer
For i = 1 To 28
    oRange.Copy
    oRange.Offset(i, i).PasteSpecial xlPasteAll
Next i

End Sub

Also I need to copy and paste values and formatting of the cells

Hope you guys can help Thanks

Dan

flag

1 Answer

vote up 0 vote down check
Sub Test()

    Dim oRange As Range
    Dim startColumn As String
    Dim rangeStart As Integer
    Dim rangeEnd As Integer
    Dim cellCount As Integer
    Dim i As Integer

    startColumn = "A"
    rangeStart = 1
    rangeEnd = 28
    cellCount = rangeEnd - rangeStart + 1

    For i = 1 To cellCount - 1
        Set oRange = ActiveSheet.Range(startColumn & rangeStart & _
                                ":" & startColumn & (rangeEnd - i))
        oRange.Copy
        oRange.Offset(i, i).PasteSpecial xlPasteAll

        Set oRange = ActiveSheet.Range(startColumn & (rangeEnd - i + 1) & _
                                ":" & startColumn & rangeEnd)
        oRange.Copy
        oRange.Offset((-1 * cellCount) + i, i).PasteSpecial xlPasteAll
    Next i

End Sub

EDIT:

to insert a blanck row at index 'i':

Rows(i & ":" & i).Select
Selection.Insert Shift:=xlDown

to insert 5 rows at the top of the worksheet insert a row 5 times at index 1:

For i = 1 To 5
    Rows("1:1").Select
    Selection.Insert Shift:=xlDown
Next
link|flag
Perfect! Thanks najmeddine – Dan Newton Oct 15 at 8:29
what about upvoting & accepting the answer? ;) – najmeddine Oct 15 at 8:37
Ok done (cant vote up as am new user!)- BTW how would I modify the above to insert (blank) rows above? Thanks – Dan Newton Oct 15 at 10:39
Thanks, see my edit. If it's not what you want can you clarify more your question? – najmeddine Oct 15 at 12:26
Ok - not quite what i meant, with the initial code you wrote, how would it be modified if the range started at cell B7 ofr example? Sorry if these are trivial questions but i'm still trying to et my head around syntax etc. Cheers – Dan Newton Oct 15 at 13:02
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.