+ Reply to Thread
Results 1 to 2 of 2

import with blank rows

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    06-15-2004
    Posts
    246

    import with blank rows

    i have imported (using the wizard) data from table/query (from access) into blank worksheet and recorded the process with a macro so i can re-run the code. Is there any way to put a blank row in between each row?

  2. #2
    Forum Expert
    Join Date
    11-23-2005
    Location
    Rome
    MS-Off Ver
    Ms Office 2016
    Posts
    1,628
    You can add this code at the end of your macro:

    This code will insert blank from row 2 and each 2 rows until the last row (based on data presents in column A):

    ultRiga = Range("a65536").End(xlUp).Row
    currentRow = 2
    Do While currentRow <= ultRiga
    DoEvents

    Rows(currentRow).Insert
    currentRow = currentRow + 2
    ultRiga = ultRiga + 1
    Loop
    a = 1
    Regards,
    Antonio

+ 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