+ Reply to Thread
Results 1 to 5 of 5

Macro to Insert a blank row after 750 rows

Hybrid View

jemmers Macro to Insert a blank row... 06-06-2014, 09:39 AM
Fotis1991 Re: Macro to Insert a blank... 06-06-2014, 09:49 AM
Hawkeye16 Re: Macro to Insert a blank... 06-06-2014, 09:57 AM
jemmers Re: Macro to Insert a blank... 06-06-2014, 10:45 AM
Fotis1991 Re: Macro to Insert a blank... 06-06-2014, 10:46 AM
  1. #1
    Registered User
    Join Date
    01-16-2013
    Location
    Oklahoma City, OK
    MS-Off Ver
    Excel 2010
    Posts
    40

    Macro to Insert a blank row after 750 rows

    Hello All,

    I'm looking for help with a macro which will insert a blank row in a spreadsheet after every 750 existing data. Once inserterted, the count should restart at 1, and continue to 750 again, where another blank row should be added.

    Any assistance would be greatly appreciated.

    Thank you,

    Jennifer

  2. #2
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Macro to Insert a blank row after 750 rows

    Hi

    Sub InsertEveryN()
        Dim rng As Range
         
        Set rng = Range("A1")
        While rng.Value <> ""
            rng.Offset(750).EntireRow.Insert
            Set rng = rng.Offset(751)
        Wend
    End Sub
    Regards

    Fotis.

    -This is my Greek whisper to Europe.

    --Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Advanced Excel Techniques: http://excelxor.com/

    --KISS(Keep it simple Stupid)

    --Bring them back.

    ---See about Acropolis of Athens.

    --Visit Greece.

  3. #3
    Valued Forum Contributor Hawkeye16's Avatar
    Join Date
    02-27-2013
    Location
    Holland
    MS-Off Ver
    ├•┤ Pew Pew
    Posts
    441

    Re: Macro to Insert a blank row after 750 rows

    Or if not every cell is populated you could try something like this

    Sub InsertBlankRows()
    
        Dim i As Integer
    
        For i = 1 To Application.Max(ActiveSheet.UsedRange.Rows.Count / 750, 1)
            Range("A1").Offset(750 * i + i - 1, 0).EntireRow.Insert
        Next
    
    End Sub

  4. #4
    Registered User
    Join Date
    01-16-2013
    Location
    Oklahoma City, OK
    MS-Off Ver
    Excel 2010
    Posts
    40

    Re: Macro to Insert a blank row after 750 rows

    Thank you everyone, I really appreciate it! Programming like this is not my strong suit.

  5. #5
    Forum Expert Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens(The homeland of the Democracy!). Greece
    MS-Off Ver
    Excel 1997!&2003 & 2007&2010
    Posts
    13,744

    Re: Macro to Insert a blank row after 750 rows

    You are welcome(from both of us) and thanks for the feedback.

    As that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED,as per Forum Rule #9. Thank you.

    Also, as a new member of the forum, you may not be aware that you can thank those who have helped you by clicking the small star icon located in the lower left corner of the post in which the help was given. By doing so you can add to the reputation(s) of those who helped.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How to create a macro to insert blank rows and copy data into blank rows?
    By zodiack101 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 10-29-2013, 01:18 PM
  2. [SOLVED] Macro to insert blank rows below rows with values
    By haleakala17 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 04-10-2013, 11:48 AM
  3. [SOLVED] Macro to insert blank rows so that the total number of rows with data is equal to 1021
    By nsm1411 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-07-2013, 10:25 AM
  4. [SOLVED] Need macro to insert a blank row after every 11 rows
    By abjac in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 02-11-2013, 01:36 AM
  5. Insert n# of blank rows macro
    By fililr in forum Excel General
    Replies: 2
    Last Post: 08-24-2011, 01:51 PM

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