+ Reply to Thread
Results 1 to 17 of 17

error 1004

Hybrid View

  1. #1
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: error 1004

    Try replaxcing all that code with this and see if it does what you want.
    Option Explicit
    
    Sub x()
        Dim iRow        As Long
        Dim asBuf()     As String
    
        Worksheets("Data").Copy After:=Sheets(Sheets.Count)
        ActiveSheet.Name = "DATA1"
    
        For iRow = Cells(Rows.Count, "A").End(xlUp).Row To 2 Step -1
            With Cells(iRow, "A")
                If InStr(.Text, ",") Then
                    asBuf = Split(Replace(.Text, " ", ""), ",")
                    .Offset(1).Resize(UBound(asBuf)).EntireRow.Insert
                    With .Resize(UBound(asBuf) + 1)
                        .Value = WorksheetFunction.Transpose(asBuf)
                        .Offset(, 1).Value = Cells(iRow, "B").Value
                    End With
                End If
            End With
        Next iRow
        
        With ActiveSheet.UsedRange
            .Value = .Value
            .EntireColumn.AutoFit
        End With
    End Sub
    Last edited by shg; 09-09-2010 at 02:26 PM.
    Entia non sunt multiplicanda sine necessitate

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1