Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are multiple inquiries on this subject, but I can't seem to find one that addresses the biggest one of my problems.

I've used the below script somebody helped develop that takes the value in column and cuts the entire row. It will then create a sheet with the column's value if it doesn't exist. If it does exist it will simply paste the data in A1.

My problem is, I need the range to be a specified area, and not just a full row. For example, I would need the data in A5:Z5, not 5:5.

In addition, I need that data to be pasted to a specific range (not A1, but say B9 or something).

Finally, and I'm not sure this is possible. But I really would ideally be able to have the first cell in the row that contains the sheet's value on the far left pasted in say, A1, and then the rest of the data pasted in c1-p1 or something (a one cell gap between the data).

Here's the code I've worked with so far (I no longer need a script that would create a sheet if it wasn't already created, but I've included it for reference anyway).

Sub CopyCodes()

    Application.ScreenUpdating = False
    Dim rCell As Range
    Dim lastrow As Long
    lastrow = Sheets("Data Sheet").UsedRange.Rows.Count
    For Each rCell In Worksheets("Data Sheet").Range("A2:A" & lastrow).SpecialCells(xlCellTypeConstants)
        If Not SheetExists(rCell.Value) Then
            With Worksheets.Add(, Worksheets(Worksheets.Count))
            .Name = rCell.Value
            End With
        End If

        Worksheets("Data Sheet").Rows(1).EntireRow.Copy Worksheets(rCell.Value).Rows(1)
        Worksheets(rCell.Value).Range("A" & Rows.Count).End(xlUp)(2).EntireRow.Value = _
        rCell.EntireRow.Value

    Next rCell
    Application.ScreenUpdating = True

End Sub
Function SheetExists(wsName As String)
    On Error Resume Next
    SheetExists = Worksheets(wsName).Name = wsName
End Function
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.