Share via

extremely slow performance on macro enabled spreadsheet in Excel 2010 Windows 7

Anonymous
2012-03-16T19:39:15+00:00

After purchasing a new computer with 14GB Ram, quad core, Windows 7, and Office Home & Business 2010, I find that the performance is SO bad that I prefer to use my old computer with 1GB Ram, 1 processor, Windows XP and Office 2003 or 2007 (don't even specifically remember). The problem is the performance with the macro execution. It seems to me that any time there is a large quantity of data or when you are useing the Selection.Delete Shift:=xlUp or Selection.Delete Shift:=xlToLeft you'd better have an extreme amount of patience. There's got to be something causing this. Can anybody help? Thanks.

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

3 answers

Sort by: Most helpful
  1. Anonymous
    2017-10-12T16:52:23+00:00

    Angelo, I could write the same words for my identical situation. Have you found a solution, yet? I'm beginning my search for one. I have fabulous spreadsheets created in Office XP. I love Office XP! When I try to use these spreadsheets in later versions of Office from 2007 and beyond, my voluminous macros run so slowly. In earlier versions of Office, these same macros are super-fast. Also, only Windows 7 Ultimate allows for the same speed of my XP spreadsheets. Other versions of Windows 7 function with memory issues (32-bit spreadsheets operating in a 64-bit OS). I want to upgrade my spreadsheets to 64-bit, but my macros must work flawlessly and super-fast, or I'm not interested. Again, I'm still searching for the solution.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2012-03-23T18:53:32+00:00

    Thank you for the suggestion but, unfortunately, this did not make a difference. It did cause me to evaluate further and I notice that I also get extremely slow performance when executing someting as simple as:

                Selection.Cut

                ActiveCell.Offset(0, -1).Select

                ActiveSheet.Paste

                Application.CutCopyMode = False

                Calculate

    If I watch the Task Manager while this is occurring I continue to see the Excel application flip back and forth between Running and Not Responding. Believe me, when I describe the performance as extremely slow there is no possible way to overemphasize "extremely".

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2012-03-16T20:37:23+00:00

    After purchasing a new computer with 14GB Ram, quad core, Windows 7, and Office Home & Business 2010, I find that the performance is SO bad that I prefer to use my old computer with 1GB Ram, 1 processor, Windows XP and Office 2003 or 2007 (don't even specifically remember). The problem is the performance with the macro execution. It seems to me that any time there is a large quantity of data or when you are useing the Selection.Delete Shift:=xlUp or Selection.Delete Shift:=xlToLeft you'd better have an extreme amount of patience. There's got to be something causing this. Can anybody help? Thanks.

    Use screen updating false before delete and change it later

    Eg:-

    Application.ScreenUpdating = false

    Selection.Delete Shift:=xlUp

    Application.ScreenUpdating = True

    Was this answer helpful?

    0 comments No comments