VBA takes WAY TOO LONG to run

justme101

Board Regular
Joined
Nov 18, 2017
Messages
67
Office Version
  1. 365
Platform
  1. Windows
Hello folks,

I have the following code running on a sheet, with currently around 10000 lines of data. In the future this may even be 50000. This code runs through a lot of cells (H11:BG10000) and checks for yellow highlighted cells, and then some part of the code does one thing and the rest something else, and because of this it is taking me a LOT of time, I like waited for 9 minutes, and then pressed escape to break it. There is no way I can submit this code with the file, as it will not be feasible for the users to wait for so long. The file is heavily formatted from A to BG cells and as well as a huge number of cells have formulas referencing various other sheets. I did what I could but no success. Any ideas on how to go with this quickly:

Dim ws1 As Worksheet

Application.DisplayAlerts = False
Application.ScreenUpdating = False
Application.Calculation = xlAutomatic
Application.EnableEvents = False

Set ws1 = ThisWorkbook.Sheets("Main Data")

Dim lr As Long
lr = Cells(Rows.Count, "D").End(xlUp).Row
On Error Resume Next
'Assuming you want to fill blanks in column A
With Range("A11:A" & lr).SpecialCells(xlCellTypeBlanks)
.FormulaR1C1 = "=RC[5]&RC[6]&RC[1]&RC[2]&RC[3]&RC[4]"
End With

On Error Resume Next
For Each rng In ActiveSheet.Range("H11:BG10000")
If rng.Interior.ColorIndex = 6 Then
rng.End(xlToRight).Value = "Check"
End If
Next

'restoring colours for columns B through G

Range("B11").Select
Range(Selection, Selection.Offset(0, 1)).Select
Range(Selection, Selection.End(xlDown)).Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorDark1
.TintAndShade = -0.149998474074526
.PatternTintAndShade = 0
End With

Range("F11").Select
Range(Selection, Selection.Offset(0, 1)).Select
Range(Selection, Selection.End(xlDown)).Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorDark1
.TintAndShade = -0.149998474074526
.PatternTintAndShade = 0
End With

Range("D11").Select
Range(Selection, Selection.Offset(0, 1)).Select
Range(Selection, Selection.End(xlDown)).Select
With Selection.Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With

Application.DisplayAlerts = True
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
Application.EnableEvents = True

End Sub
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
When you say that it checks every cell to see if it has a yellow background, is it really your intention that it checks EVERY cell in that range? That comes to around a half a million cells it's checking, according to your code, so I'd say that's probably what's consuming alot of the time.

Also, as a general rule, colour should not be treated as data. Ordinarily, if you needed a visual representation of the data using coloured cells, you would use conditional formatting for example, which would colour the cells based on a given formula.

What exactly is it that you're trying to do?
 
Upvote 0
First, at the top of your code, change this:
VBA Code:
    Application.Calculation = xlAutomatic

to this:
VBA Code:
    Application.Calculation = xlCalculationManual

Second, ask yourself if you need to write the word "Check" so many times? I think not. You only need to write it once for each row that has a cell with ColorIndex = 6.

Third, do you really need to visit every cell in Range("H11:BG10000")? That's over 5000,000 cells. Think of a better strategy to check only the cells that need checking.

(Tip: For future posts , you should try to use code tags like I did above when posting your code. It makes it easier to read.)

 
Upvote 0

Forum statistics

Threads
1,215,713
Messages
6,126,412
Members
449,314
Latest member
MrSabo83

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top