Results 1 to 9 of 9

Loop not finishing

Threaded View

  1. #7
    Forum Expert
    Join Date
    06-08-2012
    Location
    Left the forum!
    MS-Off Ver
    Left the forum!
    Posts
    5,189

    Re: Loop not finishing

    Try this,

    With the original data in sheet 2 of the second sample, select A1 and run the code, with the earlier sample, select BE1 and run it.

    Sub move_data()
    Application.ScreenUpdating = False
    Dim rng As Range, ctr As Long
    Set rng = Intersect(ActiveSheet.UsedRange, ActiveCell.Resize(1, 4).EntireColumn)
    ctr = 1
    Do Until rng.Rows.Count - (ctr * 100) < 0
        Range(rng((ctr * 100) + 1, 1), rng((ctr * 100) + 100, 4)).Cut rng.Offset(, ctr * 4)
        ctr = ctr + 1
    Loop
    Application.ScreenUpdating = True
    End Sub
    Last edited by jason.b75; 08-14-2012 at 10:41 AM.

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