+ Reply to Thread
Results 1 to 2 of 2

Insert rows everyother row

  1. #1
    Mathewnelson
    Guest

    Insert rows everyother row

    I want to insert a new row everyother row. How can I do that?

  2. #2
    Forum Contributor
    Join Date
    12-12-2005
    Posts
    667

    Exclamation Insert row every other row

    Use this macro:
    Sub Macro1()
    For i = 2 To 10 Step 2
    Range("A" & i).Select
    Selection.EntireRow.Insert
    Next
    End Sub
    Best regards,

    Ray

+ 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