+ Reply to Thread
Results 1 to 9 of 9

Cut and Paste is VERY Slow!!!

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    03-26-2015
    Location
    Cookeville, TN
    MS-Off Ver
    Excel 365
    Posts
    228

    Re: Cut and Paste is VERY Slow!!!

    I already have screen updating, calculation, and display alerts disabled. There are no event macros in the subject sheet. Status bar is not displayed.
    So my 6-second cut and paste is after disabling all of these things.

  2. #2
    Forum Contributor
    Join Date
    12-08-2020
    Location
    South Korea
    MS-Off Ver
    Excel 2010
    Posts
    108

    Re: Cut and Paste is VERY Slow!!!

    this is the best result in my case.


    
    Sub fsd()
    FoundRow = 1
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    Application.CutCopyMode = False
    old = Timer
    
    For i = 1 To 100
    
    Cells(FoundRow + i, 1).Cut Cells(FoundRow + i, 2)
    
    Next
    MsgBox Timer - old & " Sec"
    Application.ScreenUpdating = True
    Application.Calculation = xlCalculationAutomatic
    
    End Sub
    below is more faster than use "Cut" or "Copy" method.

    Sheet2.Range("B1:B10").Value= Sheet1.Range("A1:A200").Value
    Sheet1.Range("A1:A200").ClearContents
    Last edited by chronjy; 12-10-2021 at 02:16 AM.
    Caring environment and nature. caring you.

+ 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. Does VBA slow down the regular copy and paste?
    By BenRonen in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-08-2019, 07:54 AM
  2. Copy and paste is very slow to do work
    By HaroonSid in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-14-2017, 08:30 AM
  3. [SOLVED] Slow Copy and Paste
    By DukeRondo in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 06-27-2014, 07:40 PM
  4. [SOLVED] Slow Copy And Paste
    By Pierce Quality in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 01-20-2014, 05:10 PM
  5. [SOLVED] copy and paste very slow
    By Alan in forum Excel General
    Replies: 2
    Last Post: 08-05-2005, 05:05 PM
  6. paste special/values can be very slow
    By larry godfrey in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 07-13-2005, 01:05 AM

Tags for this Thread

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