Macro runs slowly

Cakz Primz

Board Regular
Joined
Dec 4, 2016
Messages
102
Office Version
  1. 365
Platform
  1. Windows
Dear all,

I need your help and kind assistance.

I have a workbook in .xlsb extension, 6MB size with only 1 sheet, no linking to another workbook. And I have not open another workbook.
The original data is csv, with Purchase Order number in text format, so I need to change into number format.
The number of rows is 85,000 and the columns used until AE (31 columns, starting from column A).

It takes more than 3 minutes just to run the code below:

VBA Code:
Sub Banyak()
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual

    Dim ws As Worksheet
    Set ws = ActiveSheet
    
    Dim lRow As Long
    lRow = Cells(Rows.Count, 1).End(xlUp).Row
    With ws
    
    .Range("B2:B" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[31])"
    .Range("C2:C" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[33])"
    .Range("D2:D" & lRow).FormulaR1C1 = "=RC[-1]/RC[-2]"
    .Range("E2:E" & lRow).FormulaR1C1 = "=RC[-3]-RC[-2]"
    .Range("F2:F" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[1])"
    .Range("G2:G" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[4])"
    .Range("H2:H" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[15])"
    .Range("I2:I" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[16])"
    .Range("J2:J" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[6])"
    .Range("K2:K" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[6])"
    .Range("L2:L" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[19])"
    .Range("M2:M" & lRow).FormulaR1C1 = "=IF(RC[-1]<RC[-3],""Ahead"",IF(RC[-1]=RC[-3],""On schedule"",""Late""))"
    .Range("B2:M" & lRow).Value = .Range("B2:M" & lRow).Value
    End With
    
    Application.ScreenUpdating = True
    Application.Calculation = xlCalculationAutomatic



Is there something wrong with the code? or perhaps there is another better solution to accelerate?

Thank you
prima - Indonesia
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Dear all,

I need your help and kind assistance.

I have a workbook in .xlsb extension, 6MB size with only 1 sheet, no linking to another workbook. And I have not open another workbook.
The original data is csv, with Purchase Order number in text format, so I need to change into number format.
The number of rows is 85,000 and the columns used until AE (31 columns, starting from column A).

It takes more than 3 minutes just to run the code below:

VBA Code:
Sub Banyak()
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual

    Dim ws As Worksheet
    Set ws = ActiveSheet
   
    Dim lRow As Long
    lRow = Cells(Rows.Count, 1).End(xlUp).Row
    With ws
   
    .Range("B2:B" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[31])"
    .Range("C2:C" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[33])"
    .Range("D2:D" & lRow).FormulaR1C1 = "=RC[-1]/RC[-2]"
    .Range("E2:E" & lRow).FormulaR1C1 = "=RC[-3]-RC[-2]"
    .Range("F2:F" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[1])"
    .Range("G2:G" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[4])"
    .Range("H2:H" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[15])"
    .Range("I2:I" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[16])"
    .Range("J2:J" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[6])"
    .Range("K2:K" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[6])"
    .Range("L2:L" & lRow).FormulaR1C1 = "=XLOOKUP(RC1,DataSource!C32,DataSource!C[19])"
    .Range("M2:M" & lRow).FormulaR1C1 = "=IF(RC[-1]<RC[-3],""Ahead"",IF(RC[-1]=RC[-3],""On schedule"",""Late""))"
    .Range("B2:M" & lRow).Value = .Range("B2:M" & lRow).Value
    End With
   
    Application.ScreenUpdating = True
    Application.Calculation = xlCalculationAutomatic



Is there something wrong with the code? or perhaps there is another better solution to accelerate?

Thank you
prima - Indonesia
Dear all,

Sorry...below is the correct VBA code:
VBA Code:
Sub Summarize()
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    

    Dim ws As Worksheet
    Set ws = ActiveSheet
    
    Dim lRow As Long
    lRow = Cells(Rows.Count, 1).End(xlUp).Row
    With ws
    
    .Range("AF4:AF" & lRow).FormulaR1C1 = "=VALUE(RC[-27])"
    .Range("AG4:AG" & lRow).FormulaR1C1 = "=COUNTIF(C[-28],RC[-1])"
    .Range("AH4:AH" & lRow).FormulaR1C1 = "=COUNTIFS(C5,RC32,C22,R3C)"
    .Range("AI4:AI" & lRow).FormulaR1C1 = "=COUNTIFS(C5,RC32,C22,R3C)"
    .Range("AJ4:AJ" & lRow).FormulaR1C1 = "=COUNTIFS(C5,RC32,C22,R3C)"
    .Range("AK4:AK" & lRow).FormulaR1C1 = "=COUNTIFS(C5,RC32,C22,R3C)"
    .Range("AL4:AL" & lRow).FormulaR1C1 = "=COUNTIFS(C5,RC32,C22,R3C)"
    .Range("AM4:AM" & lRow).FormulaR1C1 = "=COUNTIFS(C5,RC32,C22,R3C)"
    .Range("AN4:AN" & lRow).FormulaR1C1 = "=COUNTIFS(C5,RC32,C22,R3C)"
    .Range("AO4:AO" & lRow).FormulaR1C1 = "=COUNTIFS(C5,RC32,C22,R3C)"
    .Range("AF4:AO" & lRow).Value = .Range("AF4:AO" & lRow).Value
    End With
    
    Application.ScreenUpdating = True
    Application.Calculation = xlCalculationAutomatic
End Sub

Thank you very much
 
Upvote 0
Could you provide a small sample of your data using the XL2BB add in?
Purchase Order Status.xlsx
ABCDEFGHIJKLMNOPQRSTUVWXYZAAABACADAEAFAGAHAIAJAKALAMANAO
1InfoProvider DescriptionMaterial Status Report
2Last Data Update22.12.2022 05:24:35
3ProjectPR Requesting NamePR CodePO NumberInspection LevelVendor NamePO DescriptionPO item descriptionExpediterPO item numberASO sub-item NrASO sub-item descriptionInspection Release Note NumberPO Contractual delivery dateExpected Delivery DateASO released dateDelay cd.1 by Exp.ASO sub-item StatusSF/Batch StatusIncotermDelivery Point CountryMain Leg Transport Mean: EXPECTED Departure DateMain Leg Transport Mean: ACTUAL Departure DateMain Leg Transport Mean: EXPECTED Arrival DateMain Leg Transport Mean: ACTUAL Arrival DateFORECAST arrival at siteACTUAL Arrival At SiteLine ItemsAccepted DocumentsArrival at Main LegArrival at the siteAvailableInitialMain means of Tr.ArrNot AssignedReversed
4BP TANGGUH Onshore E ARIF R.11651700Cables for Building1315870RPT SINAR CEMERLANG SEMESTACABLES FOR BUILDING CLUSTER 2 - RFM 2170DRUM 2M28Abdul Haris Hutagaol2#Not assigned14552030.04.202030.06.202003.07.2020V10ARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####30.06.20201315870100100000
5BP TANGGUH Onshore E FERDIAN11639268Stationeries and Gro1309410NPT DATASCRIPSTATIONERIES AND GROCERIES FOR JAN - MARERASER / PENGHAPUS PENSIL MERK BOXIMC2Djajadi Doni19#Not assignedNot assigned31.03.202006.02.202027.12.2021Not assignedARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####06.02.2020130941061006001000
6BP TANGGUH Onshore E JOY ANDREAN11609267OZILITE AUTOMATIC LI1286918NPT. RIVERA MAKMUR ABADIOZILITE AUTOMATIC LIGHTEROZILITE 240 VOLTS WALL MOUNTEDM28Abdul Haris Hutagaol1#Not assignedNot assigned13.09.201927.09.201929.01.2020V10ARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####27.09.20191286918100100000
7BP TANGGUH Onshore E K. TAKINAWA11792898Purchasing Material1412145CPT. PARADISE PERKASAPURCHASING MATERIAL FOR TP-011-0005-01NPS:3/4X1/2-THK:2.87MMX2.77MM -ECC.MC9Omega Maruli Pohan2#Not assigned16534912.09.202217.09.202221.10.2022C10ARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byNot assigned#####17.09.20221412145200200000
8BP TANGGUH Onshore E SLAMET R.11631122SEAL SPARE PARTS HIL1302069NPT. HILTI NUSANTARASEAL SPARE PARTS HILTIANCHOR ROD HAS-U 8.8 HDG M20X260MC9Omega Maruli Pohan3#Not assignedNot assigned13.12.201912.12.201917.07.2020Not assignedARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####12.12.20191302069400400000
9BP TANGGUH Onshore E SLAMET R.11631122SEAL SPARE PARTS HIL1302069NPT. HILTI NUSANTARASEAL SPARE PARTS HILTIINJECTABLE MORTAR HIT-RE 500 V3/500/1MC9Omega Maruli Pohan4#Not assignedNot assigned13.12.201912.12.201917.07.2020Not assignedARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####12.12.20191302069400400000
10BP TANGGUH Onshore E SLAMET R.11631122SEAL SPARE PARTS HIL1302069NPT. HILTI NUSANTARASEAL SPARE PARTS HILTISEAL OUTSIDE PART NO : 207700MC9Omega Maruli Pohan2#Not assignedNot assigned13.12.201912.12.201917.07.2020Not assignedARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####12.12.20191302069400400000
11BP TANGGUH Onshore E SLAMET R.11631122SEAL SPARE PARTS HIL1302069NPT. HILTI NUSANTARASEAL SPARE PARTS HILTISEAL OUTSIDE PART NO : 406660MC9Omega Maruli Pohan1#Not assignedNot assigned13.12.201912.12.201917.07.2020Not assignedARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####12.12.20191302069400400000
12BP TANGGUH Onshore E.11611988PPE MATERIALS1288622NPT. BERKAT NIAGA DUNIAPPE MATERIALSSAFETY BOOTSM28Abdul Haris Hutagaol1#Not assignedNot assigned18.09.201905.02.202029.05.2020V10ARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####05.02.20201288622500500000
13BP TANGGUH Onshore E.11611988PPE MATERIALS1288622NPT. BERKAT NIAGA DUNIAPPE MATERIALSSAFETY BOOTSM28Abdul Haris Hutagaol2#Not assignedNot assigned18.09.201905.02.202029.05.2020V10ARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####05.02.20201288622500500000
14BP TANGGUH Onshore E.11611988PPE MATERIALS1288622NPT. BERKAT NIAGA DUNIAPPE MATERIALSSAFETY BOOTSM28Abdul Haris Hutagaol3#Not assignedNot assigned18.09.201905.02.202029.05.2020V10ARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####05.02.20201288622500500000
15BP TANGGUH Onshore E.11611988PPE MATERIALS1288622NPT. BERKAT NIAGA DUNIAPPE MATERIALSSAFETY BOOTSM28Abdul Haris Hutagaol4#Not assignedNot assigned18.09.201905.02.202029.05.2020V10ARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####05.02.20201288622500500000
16BP TANGGUH Onshore E.11611988PPE MATERIALS1288622NPT. BERKAT NIAGA DUNIAPPE MATERIALSSAFETY BOOTSM28Abdul Haris Hutagaol5#Not assignedNot assigned18.09.201905.02.202029.05.2020V10ARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####05.02.20201288622500500000
17BP TANGGUH Onshore E.11611988PPE MATERIALS1288639NPT.WAHANA SAFETY INDONESIAPPE MATERIALSFACE SHIELD (ATTACHED TO HELMET)M28Abdul Haris Hutagaol6#Not assignedNot assigned18.09.201904.10.201907.10.2019V10ARRIVAL TO SITE60ARRIVAL AT THE SITEDDPDelivered cleared byIndonesia#####04.10.20191288639300300000
DataSource
Cell Formulas
RangeFormula
AF4AF4=VALUE(E4)
AG4AG4=COUNTIF(E:E,AF4)
AH4:AO4AH4=COUNTIFS($E:$E,$AF4,$V:$V,AH$3)
 
Upvote 0
Dear kevin9999,

Below is the formula in XL2BB:

Purchase Order Status.xlsx
AFAGAHAIAJAKALAMANAO
3Line ItemsAccepted DocumentsArrival at Main LegArrival at the siteAvailableInitialMain means of Tr.ArrNot AssignedReversed
41315870100100000
DataSource
Cell Formulas
RangeFormula
AF4AF4=VALUE(E4)
AG4AG4=COUNTIF(E:E,AF4)
AH4:AO4AH4=COUNTIFS($E:$E,$AF4,$V:$V,AH$3)


Thank you so much for your kind attention and help.
Regards,
Prima - Indonesia
 
Upvote 0
I'm not entirely happy with it, but the following code (based on your XL2BB sample extended down) takes around 10 seconds for 85K+ rows. Let me know how you go with it.

VBA Code:
Option Explicit
Dim LRow As Long
Dim ws As Worksheet
Sub Cakz_Primz()
    Dim t As Double: t = Timer
    With Application
        .ScreenUpdating = False
        .EnableEvents = False
        .Calculation = xlManual
    End With
    
    Set ws = Worksheets("DataSource")   '<< Check sheet name
    LRow = ws.Cells(Rows.Count, "A").End(xlUp).Row
    
    '1. Get values into column AF
    With ws
        .Range("E4:E" & LRow).Copy
        .Range("AF4").PasteSpecial xlPasteValues
        Application.CutCopyMode = False
    End With
    
    '2. Get values into column AG
    CountIfAF
    
    '3 Get values into AH:AO
    CountIfAH
    
    With Application
        .ScreenUpdating = True
        .EnableEvents = True
        .Calculation = xlAutomatic
    End With
    
    MsgBox "Completed " & LRow - 3 & " rows in " & Timer - t & "seconds."
End Sub

Sub CountIfAF()
    Dim R As Long, s As String, Data As Variant, Result As Variant
    Data = Range("E4:E" & LRow)
    ReDim Result(1 To UBound(Data), 1 To 1)
    
    With CreateObject("Scripting.Dictionary")
      For R = 1 To UBound(Data)
        s = CStr(Data(R, 1))
        .Item(s) = .Item(s) + 1
      Next
    For R = 1 To UBound(Data)
        Result(R, 1) = .Item(CStr(Data(R, 1)))
      Next
    End With
    Range("AG4").Resize(UBound(Result)) = Result
End Sub

Sub CountIfAH()
    Dim R As Long, s As String, Data, Result
    Dim ar1, i As Long, x As String
    Data = ws.Range("E4:V" & LRow)
    ReDim Result(1 To UBound(Data), 1 To 1)
    
    With CreateObject("Scripting.Dictionary")
        For i = 34 To 41
            x = ws.Cells(3, i)
            For R = 1 To UBound(Data)
              If UCase(Data(R, 18)) = UCase(x) Then
                s = CStr(Data(R, 1))
                .Item(s) = .Item(s) + 1
              End If
            Next
            For R = 1 To UBound(Data)
                Result(R, 1) = .Item(CStr(Data(R, 1)))
            Next
            Cells(4, i).Resize(UBound(Result)) = Result
            .RemoveAll
        Next i
    End With
End Sub
 
Upvote 0
Solution
I am not entirely happy with mine either but here is another version.

VBA Code:
Sub Summarize_v02()

    Dim t As Double: t = Timer
    
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual

    Dim ws As Worksheet
    Dim LRow As Long
    Dim dictPO_SumRow As Object, dictPOKey As String
    Dim dictStatus_Col As Object, dictStatusKey As String
    Dim rngSrc As Range, rngOut As Range, cellHdg As Range
    Dim arrSrc As Variant, arrSum() As Variant, arrOut() As Variant
    Dim iSrc As Long, iSum As Long, iSumNew As Long, iHdg, SumColID As Long, j As Long
        
    Set ws = ActiveSheet
    With ws
        LRow = .Cells(Rows.Count, 1).End(xlUp).Row
        Set rngSrc = .Range("A4:AO" & LRow)                         '<-- Modify as required
        arrSrc = rngSrc.Value
        Set rngOut = .Range("AF4:AO" & LRow)                        '<-- Modify as required - repeated PO No and Count Columns
        ReDim arrSum(1 To UBound(arrSrc), 1 To rngOut.Columns.Count)
        ReDim arrOut(1 To UBound(arrSrc), 1 To rngOut.Columns.Count)
    End With
    
    ' Load Dictionary for Headings / Categories relative position
    Set dictStatus_Col = CreateObject("Scripting.dictionary")
    For Each cellHdg In rngOut.Offset(-1).Cells
        dictStatusKey = UCase(cellHdg.Value)
        If Not dictStatus_Col.exists(dictStatusKey) Then
            iHdg = iHdg + 1
            If cellHdg.Value = "" Then dictStatusKey = "PO NO"          ' Not used just a place holder
            dictStatus_Col(dictStatusKey) = iHdg
        End If
    Next cellHdg
    
    
    ' Load Dictionary Unique PO nos and total count by Category
    Set dictPO_SumRow = CreateObject("Scripting.dictionary")
    For iSrc = 1 To UBound(arrSrc)
        dictPOKey = CStr(arrSrc(iSrc, 5))
        If Not dictPO_SumRow.exists(dictPOKey) Then
            iSumNew = iSumNew + 1
            dictPO_SumRow(dictPOKey) = iSumNew
        End If
        iSum = dictPO_SumRow(dictPOKey)
        arrSum(iSum, 1) = arrSrc(iSrc, 5)
        arrSum(iSum, 2) = arrSum(iSum, 2) + 1
        
        dictStatusKey = UCase(arrSrc(iSrc, 22))
        SumColID = dictStatus_Col(dictStatusKey)
        arrSum(iSum, SumColID) = arrSum(iSum, SumColID) + 1
    Next iSrc
    
    ' Load output array based on all rows in source and outputting count values against repeating PO numbers
    For iSrc = 1 To UBound(arrSrc)
        arrOut(iSrc, 1) = arrSrc(iSrc, 5)
        dictPOKey = CStr(arrSrc(iSrc, 5))
        For j = 2 To UBound(arrSum, 2)
            arrOut(iSrc, j) = arrSum(dictPO_SumRow(dictPOKey), j)
        Next j
    Next iSrc
   
    rngOut.Resize(UBound(arrOut)) = arrOut

    Application.ScreenUpdating = True
    Application.Calculation = xlCalculationAutomatic
    
    MsgBox "Completed " & UBound(arrSrc) & " rows in " & Timer - t & "seconds."
End Sub
 
Upvote 0
To convert text format to number format.
Select the range
Data->> Text to columns
Delimited->>Next->>Next
Select Date ->> Finish
 
Upvote 0
I'm not entirely happy with it, but the following code (based on your XL2BB sample extended down) takes around 10 seconds for 85K+ rows. Let me know how you go with it.

VBA Code:
Option Explicit
Dim LRow As Long
Dim ws As Worksheet
Sub Cakz_Primz()
    Dim t As Double: t = Timer
    With Application
        .ScreenUpdating = False
        .EnableEvents = False
        .Calculation = xlManual
    End With
   
    Set ws = Worksheets("DataSource")   '<< Check sheet name
    LRow = ws.Cells(Rows.Count, "A").End(xlUp).Row
   
    '1. Get values into column AF
    With ws
        .Range("E4:E" & LRow).Copy
        .Range("AF4").PasteSpecial xlPasteValues
        Application.CutCopyMode = False
    End With
   
    '2. Get values into column AG
    CountIfAF
   
    '3 Get values into AH:AO
    CountIfAH
   
    With Application
        .ScreenUpdating = True
        .EnableEvents = True
        .Calculation = xlAutomatic
    End With
   
    MsgBox "Completed " & LRow - 3 & " rows in " & Timer - t & "seconds."
End Sub

Sub CountIfAF()
    Dim R As Long, s As String, Data As Variant, Result As Variant
    Data = Range("E4:E" & LRow)
    ReDim Result(1 To UBound(Data), 1 To 1)
   
    With CreateObject("Scripting.Dictionary")
      For R = 1 To UBound(Data)
        s = CStr(Data(R, 1))
        .Item(s) = .Item(s) + 1
      Next
    For R = 1 To UBound(Data)
        Result(R, 1) = .Item(CStr(Data(R, 1)))
      Next
    End With
    Range("AG4").Resize(UBound(Result)) = Result
End Sub

Sub CountIfAH()
    Dim R As Long, s As String, Data, Result
    Dim ar1, i As Long, x As String
    Data = ws.Range("E4:V" & LRow)
    ReDim Result(1 To UBound(Data), 1 To 1)
   
    With CreateObject("Scripting.Dictionary")
        For i = 34 To 41
            x = ws.Cells(3, i)
            For R = 1 To UBound(Data)
              If UCase(Data(R, 18)) = UCase(x) Then
                s = CStr(Data(R, 1))
                .Item(s) = .Item(s) + 1
              End If
            Next
            For R = 1 To UBound(Data)
                Result(R, 1) = .Item(CStr(Data(R, 1)))
            Next
            Cells(4, i).Resize(UBound(Result)) = Result
            .RemoveAll
        Next i
    End With
End Sub
Dear kevin9999,

Thanks so much for your kind assistance and help.
Let me try the code, and I will inform you, tomorrow.

Again, thanks for everything.

Regards,
Prima - Indonesia
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,259
Members
449,075
Latest member
staticfluids

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