Results 1 to 6 of 6

Slow VBA Loop Code

Threaded View

  1. #1
    Registered User
    Join Date
    04-27-2012
    Location
    Manchester, CT
    MS-Off Ver
    Excel 2010
    Posts
    3

    Slow VBA Loop Code

    I have a VBA loop code I wrote to move hourly data to a sheet set up in 5 minute intervals, entering the hourly data every 12 spaces. This code works but it takes >20 minutes to run one column of data. Is there any way to speed it up?
    Sub procedure2()
    
    'Moves Manual Entry Hourly NU Reported Output to Partial Tracking 5min NU Reported Output
        For i = 12 To 9000 Step 12
        Sheet5.Range("f4").Offset(0, 0) = Sheet7.Range("m4").Offset(0, 0)
        Sheet5.Range("f4").Offset(i, 0) = Sheet7.Range("m4").Offset((i / 12), 0)
        Next i
    End Sub
    Last edited by royUK; 04-30-2012 at 08: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