Excel to give me a random 30% sample of a list

cwilliams96

Board Regular
Joined
Jul 27, 2003
Messages
186
I will potentially have a list of data (Customers) the list could be 200+ lines long. Each customer belongs to a branch.

For eaxmple 10 customers branch a, 24 customer branch b etc etc.

I am going to be auditing the customers based upon a 30% sample.

So I want a random 30% sample of customers from branch a, sample branch b, sample of branch c etc. In order to then audit

What I want to do is have excel either highlight randomly 30% from branch a, branch b etc, or give me a new list? or some other way for me to pull the data out of the main list.

I have not got a clue how to do this? Any help anyone?

Thank you in advance
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Would you like to try running a macro?

Copy your data to Column A on a vacant worksheet, then run the following. It should give your randomly selected 30% both ways that you suggest (colored cyan and listed in ColumnC
Code:
Sub randsamp()
Dim b() As Boolean, c()
Dim n&, x&, u&, i&, m&, k&
With Range("A:A")
.Interior.Color = xlNone
n = .Cells(Rows.Count).End(3).Row
m = Application.Round(0.3 * n, 0)
ReDim b(n), c(1 To n, 1 To 1)
Do
    x = Int(Rnd * n) + 1
    If b(x) = False Then b(x) = True: u = u + 1
Loop Until u = m
For i = 1 To n
    If b(i) Then
        .Cells(i).Interior.Color = vbCyan
        k = k + 1
        c(k, 1) = .Cells(i)
    End If
Next i
End With
Range("C1").Resize(k) = c
End Sub
 
Upvote 0
With you customer in Column "A and your Branches in column "B", this will return a Random 30% of each branch, showing Customers in column "C" and Branches in column "E".
Code:
[COLOR=navy]Sub[/COLOR] MG26Jun44
[COLOR=navy]Dim[/COLOR] Rng [COLOR=navy]As[/COLOR] Range, Dn [COLOR=navy]As[/COLOR] Range, n [COLOR=navy]As[/COLOR] [COLOR=navy]Long[/COLOR]
[COLOR=navy]Dim[/COLOR] nRng [COLOR=navy]As[/COLOR] Range
[COLOR=navy]Dim[/COLOR] K
[COLOR=navy]Dim[/COLOR] Ray
[COLOR=navy]Dim[/COLOR] c [COLOR=navy]As[/COLOR] [COLOR=navy]Integer[/COLOR]
[COLOR=navy]Dim[/COLOR] Q
[COLOR=navy]Dim[/COLOR] nRay [COLOR=navy]As[/COLOR] Variant
c = 1
[COLOR=navy]Set[/COLOR] Rng = Range(Range("B1"), Range("B" & rows.Count).End(xlUp))
   ReDim Ray(1 To Rng.Count, 1 To Rng.Count)
    [COLOR=navy]With[/COLOR] CreateObject("scripting.dictionary")
        .CompareMode = vbTextCompare
    [COLOR=navy]For[/COLOR] [COLOR=navy]Each[/COLOR] Dn [COLOR=navy]In[/COLOR] Rng
        [COLOR=navy]If[/COLOR] Not .Exists(Dn.value) [COLOR=navy]Then[/COLOR]
           n = n + 1
           Ray(n, 1) = Dn.Offset(, -1)
          .Add Dn.value, Array(Ray, n, 1)
        [COLOR=navy]Else[/COLOR]
          Q = .Item(Dn.value)
          Q(2) = Q(2) + 1
          Q(0)(Q(1), Q(2)) = Dn.Offset(, -1)
          .Item(Dn.value) = Q
        [COLOR=navy]End[/COLOR] If
    [COLOR=navy]Next[/COLOR]
[COLOR=navy]Dim[/COLOR] t
[COLOR=navy]For[/COLOR] [COLOR=navy]Each[/COLOR] K [COLOR=navy]In[/COLOR] .keys
   ReDim nRay(1 To .Item(K)(2))
   [COLOR=navy]For[/COLOR] t = 1 To .Item(K)(2)
     nRay(t) = .Item(K)(0)(.Item(K)(1), t)
   [COLOR=navy]Next[/COLOR] t
    Ray = oRnd(Application.Transpose(Application.Transpose(nRay)))
    n = Int(UBound(Ray) / 3)
    Range("C" & c).Resize(n) = Application.Index(Ray, Evaluate("row(1:" & n & ") ")) 
    Range("D" & c).Resize(n) = K
    c = c + n + 1
[COLOR=navy]Next[/COLOR] K
[COLOR=navy]End[/COLOR] With
[COLOR=navy]End[/COLOR] [COLOR=navy]Sub[/COLOR]
Function oRnd(ByRef Ray [COLOR=navy]As[/COLOR] Variant) [COLOR=navy]As[/COLOR] Variant
[COLOR=navy]Dim[/COLOR] num    [COLOR=navy]As[/COLOR] [COLOR=navy]Integer[/COLOR]
[COLOR=navy]Dim[/COLOR] n      [COLOR=navy]As[/COLOR] [COLOR=navy]Integer[/COLOR]
[COLOR=navy]Dim[/COLOR] txt    [COLOR=navy]As[/COLOR] [COLOR=navy]String[/COLOR]
[COLOR=navy]Dim[/COLOR] Rw     [COLOR=navy]As[/COLOR] [COLOR=navy]Integer[/COLOR]
[COLOR=navy]Dim[/COLOR] TxRay() [COLOR=navy]As[/COLOR] [COLOR=navy]String[/COLOR]
[COLOR=navy]Dim[/COLOR] c      [COLOR=navy]As[/COLOR] [COLOR=navy]Integer[/COLOR]
[COLOR=navy]Dim[/COLOR] p      [COLOR=navy]As[/COLOR] [COLOR=navy]Integer[/COLOR]
[COLOR=navy]Dim[/COLOR] rws    [COLOR=navy]As[/COLOR] [COLOR=navy]Integer[/COLOR]
[COLOR=navy]Dim[/COLOR] nRay [COLOR=navy]As[/COLOR] Variant
ReDim nRay(1 To UBound(Ray))
nRay = Ray
rws = UBound(Ray)
Randomize
[COLOR=navy]For[/COLOR] Rw = 1 To rws
    c = 0: p = p + 1
      num = Int(Rnd * UBound(Ray)) + 1
         nRay(p) = Ray(num)
            '[COLOR=green][B]Cells(p, 5) = Ray(num)[/B][/COLOR]
[COLOR=navy]For[/COLOR] n = 1 To UBound(Ray)
    [COLOR=navy]If[/COLOR] Not Ray(n) = Ray(num) [COLOR=navy]Then[/COLOR]
        ReDim Preserve TxRay(c)
        TxRay(c) = n
        c = c + 1
    [COLOR=navy]End[/COLOR] If
[COLOR=navy]Next[/COLOR] n
Ray = Application.Transpose(Application.Index(Ray, Application.Transpose(Array(TxRay))))
[COLOR=navy]Next[/COLOR] Rw
oRnd = nRay
[COLOR=navy]End[/COLOR] Function
Regards Mick
 
Last edited:
Upvote 0
Try this code:

Important: make a copy of your workbook first.

Code:
Sub Filter30()
'
'Prg    : Filter30
'Author : Markmzz
'Date   : 26/06/2011
'Version: 01
'
    'Define the macro variables
    Dim LastRow, LastCol, LastRowCB, LastColDT As Long
    Dim LastColDTF, LastRowB, LastRow30, i As Long
 
    'Disable ScreenUpdating
    Application.ScreenUpdating = False
 
    'Select the worksheet
    Sheets("Customers").Select
 
    'Determines the last column in the list of customers
    LastCol = Cells(1, Columns.Count).End(xlToLeft).Column
    'Determines the last row in the list of customers
    LastRow = Cells(Rows.Count, 1).End(xlUp).Row
 
    'Create the column of random number (Rnd)
    Cells(1, LastCol + 1).Value = "Rnd"
    Range(Cells(2, LastCol + 1), Cells(LastRow, LastCol + 1)).Formula = _
        "=RandBetween(1,CountA(A:A))"
    LastCol = LastCol + 1
 
    'Copy the label Branch for two cells two columns
    'to the right of the list of customers
    Cells(1, 2).Copy _
        Destination:=Range(Cells(1, LastCol + 2), Cells(1, LastCol + 3))
 
    'Create a list of unique branch
    Range(Cells(1, 1), Cells(LastRow, LastCol)).AdvancedFilter _
        Action:=xlFilterCopy, _
        CopyToRange:=Cells(1, LastCol + 2), _
        Unique:=True
 
    'Determines the last row in the list of branchs
    LastRowB = Cells(Rows.Count, LastCol + 2).End(xlUp).Row
 
    'Sort, in ascending order, the list of branchs
    Range(Cells(2, LastCol + 2), Cells(LastRowB, LastCol + 2)).Sort _
        Key1:=Cells(1, LastCol + 2), _
        Order1:=xlAscending
 
    'Define the last column with data
    LastColDT = LastCol + 3
 
    'Browse for the list of branchs
    For i = 2 To LastRowB
 
        'Copy the current branch to the cell of criteria
        Cells(i, LastCol + 2).Copy _
            Destination:=Cells(2, LastCol + 3)
 
        'Filter the list of customers by the current branch in
        'the criteria area
        Range(Cells(1, 1), Cells(LastRow, LastCol)).AdvancedFilter _
            Action:=xlFilterCopy, _
            CopyToRange:=Cells(1, LastColDT + 2), _
            CriteriaRange:=Range(Cells(1, LastCol + 3), Cells(2, LastCol + 3))
 
        'Determines the last column in the list of customers & branchs
        LastColDTF = Cells(1, Columns.Count).End(xlToLeft).Column
        'Determines the last row in the list of customers & branchs
        LastRowCB = Cells(Rows.Count, LastColDTF).End(xlUp).Row
 
        'Sort, in ascending order, the list of customers & branchs
        'by the field Rnd
        Range(Cells(2, LastColDT + 2), Cells(LastRowCB, LastColDTF)).Sort _
            Key1:=Cells(1, LastColDTF), _
            Order1:=xlAscending
 
        'Delete the column of the field Rnd
        Cells(1, LastColDTF).EntireColumn.Delete
        LastColDTF = LastColDTF - 1
 
        'Determines the number of rows of 30%
        LastRow30 = Round((LastRowCB - 1) * 0.3, 0)
 
        'Delete the data of the row large then 30%
        Range(Cells(LastRow30 + 2, LastColDT + 2), Cells(LastRowCB, LastColDTF)).Clear
        LastColDT = LastColDTF
    Next i
 
    'Delete the columns of helper (Rnd and criteria)
    Range(Cells(1, LastCol), Cells(1, LastCol + 3)).EntireColumn.Delete
 
    'Enable ScreenUpdating
    Application.ScreenUpdating = True
End Sub

Customers
<TABLE style="BORDER-BOTTOM: #a6aab6 1px solid; BORDER-LEFT: #a6aab6 1px solid; BACKGROUND-COLOR: #ffffff; BORDER-COLLAPSE: collapse; BORDER-TOP: #a6aab6 1px solid; BORDER-RIGHT: #a6aab6 1px solid" rules=all cellPadding=2><COLGROUP><COL style="BACKGROUND-COLOR: #e0e0f0" width=25><COL><COL><COL><COL><COL><COL><COL><COL><COL><COL><COL><COL><COL><COL><COL><COL><COL></COLGROUP><THEAD><TR style="TEXT-ALIGN: center; BACKGROUND-COLOR: #e0e0f0; COLOR: #161120"><TH></TH><TH>A</TH><TH>B</TH><TH>C</TH><TH>D</TH><TH>E</TH><TH>F</TH><TH>G</TH><TH>H</TH><TH>I</TH><TH>J</TH><TH>K</TH><TH>L</TH><TH>M</TH><TH>N</TH><TH>O</TH><TH>P</TH><TH>Q</TH></TR></THEAD><TBODY><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">1</TD><TD style="FONT-WEIGHT: bold">Customers</TD><TD style="FONT-WEIGHT: bold">Branch</TD><TD style="TEXT-ALIGN: right"></TD><TD style="FONT-WEIGHT: bold">Customers</TD><TD style="FONT-WEIGHT: bold">Branch</TD><TD style="TEXT-ALIGN: right"></TD><TD style="FONT-WEIGHT: bold">Customers</TD><TD style="FONT-WEIGHT: bold">Branch</TD><TD style="TEXT-ALIGN: right"></TD><TD style="FONT-WEIGHT: bold">Customers</TD><TD style="FONT-WEIGHT: bold">Branch</TD><TD style="TEXT-ALIGN: right"></TD><TD style="FONT-WEIGHT: bold">Customers</TD><TD style="FONT-WEIGHT: bold">Branch</TD><TD style="TEXT-ALIGN: right"></TD><TD style="FONT-WEIGHT: bold">Customers</TD><TD style="FONT-WEIGHT: bold">Branch</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">2</TD><TD>Customer001</TD><TD>Branch E</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer156</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer152</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer006</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer153</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer086</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">3</TD><TD>Customer002</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer196</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer187</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer016</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer094</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer124</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">4</TD><TD>Customer003</TD><TD>Branch E</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer074</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer129</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer185</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer165</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer025</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">5</TD><TD>Customer004</TD><TD>Branch E</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer176</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer198</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer097</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer136</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer101</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">6</TD><TD>Customer005</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer144</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer134</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer150</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer053</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer100</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">7</TD><TD>Customer006</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer112</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer023</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer155</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer107</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer009</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">8</TD><TD>Customer007</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer014</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer204</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer052</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer117</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer087</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">9</TD><TD>Customer008</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer048</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer202</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer192</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer073</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer047</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">10</TD><TD>Customer009</TD><TD>Branch E</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer069</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer035</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer193</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer186</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer108</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">11</TD><TD>Customer010</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer065</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer031</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer199</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer200</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer143</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">12</TD><TD>Customer011</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer173</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer109</TD><TD>Branch B</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer030</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer015</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer099</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">13</TD><TD>Customer012</TD><TD>Branch E</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer197</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer010</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer132</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">14</TD><TD>Customer013</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer190</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer163</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer209</TD><TD>Branch E</TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">15</TD><TD>Customer014</TD><TD>Branch A</TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD>Customer113</TD><TD>Branch C</TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">16</TD><TD>Customer015</TD><TD>Branch D</TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD><TD style="TEXT-ALIGN: right"></TD></TR><TR><TD style="TEXT-ALIGN: center; COLOR: #161120">17</TD><TD>Customer016</TD><TD>Branch C</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD><TD>*********</TD></TR></TBODY></TABLE>


Markmzz
 
Upvote 0
Add a helper column with the formula =RAND()
Filter that column on the basis of <.3

There is your sample.

(On average) the filtered results will have 30% of store A's records, 30% of store B's records, etc.
 
Upvote 0

Forum statistics

Threads
1,224,585
Messages
6,179,696
Members
452,938
Latest member
babeneker

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