VBA to copy from a range based on a condition

LOrndoff

New Member
Joined
Aug 15, 2014
Messages
7
I am new to this, so please bear with me. Here is a small sample of my data.
CODES1678910A10B
AC10.000.000.005.000.000.001.00
AC20.000.000.000.000.000.000.00
AC30.000.000.000.003.000.000.00
AC40.000.000.000.000.000.001.00
<colgroup><col width="64" style="width: 48pt;" span="8"> <tbody> </tbody>

CODES#DEFECTSSHOP
<colgroup><col width="64" style="width: 48pt;" span="3"> <tbody> </tbody>

I am trying to write the code to search through range B2:AI31 and if the cell does not contain a 0, then copy the code in column A (AC1, AC2, etc.) to the codes column; copy the corresponding # of the defects in the row, and then copy the number of the shop from row A1:AI1. If someone could give me a push in the right direction I sure would appreciate it. Thanks!
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
LOrndoff,

Welcome to the MrExcel forum.

1. What version of Excel and Windows are you using?

2. Are you using a PC or a Mac?


So that we can get it right on the first go, can we have another text display/screenshot of what the results should look like?
 
Upvote 0
Sorry, I forgot that part. I am using Windows 7 Professional and Excel 2010.
DEFECTS
CODES1678910A10B10B-210B-310B-410B-51113A13B14A14B1516L3-1L3-2L3-3L3-4L3-5L3-6TOTALSCODES#DEFECTSSHOP
AC10.000.000.005.000.000.001.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.006.00
AC20.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
AC30.000.000.000.003.000.000.000.000.000.000.000.000.000.000.001.002.000.000.000.000.000.000.000.006.00
AC40.000.000.000.000.000.001.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.001.00
AC50.005.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.005.00
AF10.000.000.003.002.000.000.000.000.000.000.001.001.000.002.002.000.000.000.000.001.000.000.000.0012.00
AW10.000.0016.00107.00273.001460.000.0042.00146.000.000.001006.000.000.0057.00188.000.000.000.000.000.000.000.000.003327.00
B10.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
C10.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
CP10.001.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.001.00
D10.000.000.000.000.000.000.000.000.000.000.000.000.001.000.000.000.000.000.000.000.000.000.000.001.00
E10.001.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.001.00
E20.006.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.006.00
E30.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
E40.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
E50.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.000.00
L10.000.000.0010.0022.000.0032.000.000.000.000.0095.000.000.00124.000.000.000.000.000.000.000.000.000.00251.00
<colgroup><col width="64" style="width: 48pt;" span="31"> <tbody> </tbody>

I hope this helps.
 
Upvote 0
This places the output starting in column AK.
Code:
Sub LOrndoff()
Dim lR As Long, R As Range, vA As Variant, vO() As Variant, Ct As Long
lR = Range("A" & Rows.Count).End(xlUp).Row
Set R = Range("A1:AI" & lR)
vA = R.Value
ReDim vO(1 To Columns("A:AI").Count * UBound(vA, 1), 1 To 3)
Range("AK1:AM1").Value = Array("CODE", "#DEFECTS", "SHOP")
For i = 2 To UBound(vA, 1)
    For j = 2 To UBound(vA, 2)
        If vA(i, j) <> 0 Then
            Ct = Ct + 1
            vO(Ct, 1) = vA(i, 1)
            vO(Ct, 2) = vA(i, j)
            vO(Ct, 3) = vA(1, j)
        End If
    Next j
Next i
If Ct > 0 Then
    Range("AK2:AM" & Ct + 1).Value = vO
End If
End Sub
 
Upvote 0
LOrndoff,

After looking at your data, I think I understand.

Sample raw data:


Excel 2007
ABCDEFGHI
1CODES1678910A10B
2AC10005001
3AC20000000
4AC30000300
5AC40000001
6
Sheet1


After the macro (using two arrays in memory) in a new worksheet Results:


Excel 2007
ABC
1CODES#DEFECTSSHOP
2AC158
3AC1110B
4AC339
5AC4110B
6
Results


Please TEST this FIRST in a COPY of your workbook (always make a backup copy before trying new code, you never know what you might lose).

1. Copy the below code
2. Open your NEW workbook
3. Press the keys ALT + F11 to open the Visual Basic Editor
4. Press the keys ALT + I to activate the Insert menu
5. Press M to insert a Standard Module
6. Where the cursor is flashing, paste the code
7. Press the keys ALT + Q to exit the Editor, and return to Excel
8. To run the macro from Excel press ALT + F8 to display the Run Macro Dialog. Double Click the macro's name to Run it.

Code:
Sub ReorgData()
' hiker95, 08/15/2014, ME799240
Dim w1 As Worksheet, wr As Worksheet
Dim a As Variant, o As Variant
Dim i As Long, j As Long
Dim lr As Long, lc As Long, n As Long, c As Long
Application.ScreenUpdating = False
Set w1 = Sheets("Sheet1")
With w1
  lr = .Cells(Rows.Count, 1).End(xlUp).Row
  lc = .Cells(1, Columns.Count).End(xlToLeft).Column
  a = .Range(.Cells(1, 1), .Cells(lr, lc))
  n = Application.CountIf(.Range(.Cells(2, 2), .Cells(lr, lc)), ">0")
  ReDim o(1 To n + 1, 1 To 3)
End With
j = 1
o(j, 1) = "CODES": o(j, 2) = "#DEFECTS": o(j, 3) = "SHOP"
For i = 2 To lr
  For c = 2 To lc
    If a(i, c) <> 0 Then
      j = j + 1
      o(j, 1) = a(i, 1)
      o(j, 2) = a(i, c)
      o(j, 3) = a(1, c)
    End If
  Next c
Next i
If Not Evaluate("ISREF(Results!A1)") Then Worksheets.Add(After:=w1).Name = "Results"
Set wr = Sheets("Results")
With wr
  .UsedRange.Clear
  .Cells(1, 1).Resize(n + 1, 3).Value = o
  .Columns(1).Resize(, 3).AutoFit
  .Activate
End With
Application.ScreenUpdating = True
End Sub

Before you use the macro with Excel 2007 or newer, save your workbook, Save As, a macro enabled workbook with the file extension .xlsm

Then run the ReorgData macro.
 
Upvote 0
LOrndoff,

Sample raw data:


Excel 2007
ABCDEFGHI
1CODES1678910A10B
2AC10.000.000.005.000.000.001.00
3AC20.000.000.000.000.000.000.00
4AC30.000.000.000.003.000.000.00
5AC40.000.000.000.000.000.001.00
6
DEFECTS


After the new macro (using two arrays in memory) in a new worksheet Results:


Excel 2007
ABC
1CODES#DEFECTSSHOP
2AC15.008
3AC11.0010B
4AC33.009
5AC41.0010B
6
Results


Please TEST this FIRST in a COPY of your workbook (always make a backup copy before trying new code, you never know what you might lose).

Code:
Sub ReorgData_V2()
' hiker95, 08/15/2014, ME799240
Dim wd As Worksheet, wr As Worksheet
Dim a As Variant, o As Variant
Dim i As Long, j As Long
Dim lr As Long, lc As Long, n As Long, c As Long
Application.ScreenUpdating = False
Set wd = Sheets("DEFECTS")
With wd
  lr = .Cells(Rows.Count, 1).End(xlUp).Row
  lc = .Cells(1, Columns.Count).End(xlToLeft).Column
  a = .Range(.Cells(1, 1), .Cells(lr, lc))
  n = Application.CountIf(.Range(.Cells(2, 2), .Cells(lr, lc)), ">0")
  ReDim o(1 To n + 1, 1 To 3)
End With
j = 1
o(j, 1) = "CODES": o(j, 2) = "#DEFECTS": o(j, 3) = "SHOP"
For i = 2 To lr
  For c = 2 To lc
    If a(i, c) <> 0 Then
      j = j + 1
      o(j, 1) = a(i, 1)
      o(j, 2) = a(i, c)
      o(j, 3) = a(1, c)
    End If
  Next c
Next i
If Not Evaluate("ISREF(Results!A1)") Then Worksheets.Add(After:=wd).Name = "Results"
Set wr = Sheets("Results")
With wr
  .UsedRange.Clear
  .Cells(1, 1).Resize(n + 1, 3).Value = o
  .Range(.Cells(2, 2), .Cells(n + 1, 2)).NumberFormat = "0.00"
  .Columns(1).Resize(, 3).AutoFit
  .Activate
End With
Application.ScreenUpdating = True
End Sub

Before you use the macro with Excel 2007 or newer, save your workbook, Save As, a macro enabled workbook with the file extension .xlsm

Then run the ReorgData_V2 macro.
 
Upvote 0
Thanks you both very much for your quick reply. Unfortunately, I won't be able to test it till I go back to work on Monday. I will be sure and let you know how things work out. Thanks again!
 
Upvote 0
Hi,

……and just for completeness, a Simple Sort Program from a beginner without the Array and other clever Stuff!

……This code:

<font face=Calibri><SPAN style="color:#007F00">'Option Explicit 'forces you to define your variable Types. - saves copmuter space and error show up easier</SPAN><br><SPAN style="color:#00007F">Sub</SPAN> SimpleSortOfSort()<br><SPAN style="color:#00007F">Dim</SPAN> InputTableLastColumn <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Byte</SPAN>, InputTableLastRow <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Byte</SPAN>, ShopColumn <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Byte</SPAN>, DefectCodeRow <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Byte</SPAN> <SPAN style="color:#007F00">'Define variable for last Column and Last Row and a Count variable for Columnns and a count for Rows. (Byte limits size to 255)</SPAN><br><SPAN style="color:#00007F">Let</SPAN> InputTableLastColumn = Worksheets("Sheet1").Cells(1, Columns.Count).End(xlToLeft).Column <SPAN style="color:#007F00">'Go to last Column in first Row, then go back left until you reach the last cell with data in in Row 1, then give that column Number</SPAN><br><SPAN style="color:#00007F">Let</SPAN> InputTableLastRow = Worksheets("Sheet1").Cells(Rows.Count, 1).End(xlUp).Row <SPAN style="color:#007F00">'Go to last Row in first Column, go back up until you reach the last cell with data in in column1 1, then give that Row Number</SPAN><br><SPAN style="color:#00007F">Dim</SPAN> FinalTableRowNumber <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Byte</SPAN> <SPAN style="color:#007F00">'define the variable used for the number of your outpu Rows in a loop which works out the contents of each row.**(Byte limits you to 255 Rows)</SPAN><br><SPAN style="color:#00007F">Let</SPAN> FinalTableRowNumber = 1 <SPAN style="color:#007F00">' Give it a first value for first row</SPAN><br><SPAN style="color:#007F00">'</SPAN><br><SPAN style="color:#007F00">'Now go througth looking for wot you want in the final table.....</SPAN><br>** <SPAN style="color:#00007F">For</SPAN> ShopColumn = 2 <SPAN style="color:#00007F">To</SPAN> InputTableLastColumn - 1**<SPAN style="color:#007F00">'Go through every Shop Column...</SPAN><br>**** <SPAN style="color:#00007F">For</SPAN> DefectCodeRow = 2 <SPAN style="color:#00007F">To</SPAN> InputTableLastRow <SPAN style="color:#007F00">'...then go through every table Row defect number</SPAN><br>****** <SPAN style="color:#00007F">If</SPAN> Worksheets("Sheet1").Cells(DefectCodeRow, ShopColumn).Value <> 0 <SPAN style="color:#00007F">Then</SPAN> <SPAN style="color:#007F00">' Then.... If you have a defect.....</SPAN><br>****** <SPAN style="color:#00007F">Let</SPAN> FinalTableRowNumber = FinalTableRowNumber + 1 <SPAN style="color:#007F00">'Start new Row in final table</SPAN><br>****** Worksheets("Sheet1").Cells(FinalTableRowNumber, InputTableLastColumn + 2).Value = Worksheets("Sheet1").Cells(DefectCodeRow, 1).Value <SPAN style="color:#007F00">'Put Defect Code in colum you wanted to</SPAN><br>****** Worksheets("Sheet1").Cells(FinalTableRowNumber, InputTableLastColumn + 3).Value = Worksheets("Sheet1").Cells(DefectCodeRow, ShopColumn).Value <SPAN style="color:#007F00">'Put number of Defects in column you wanted to!</SPAN><br>****** Worksheets("Sheet1").Cells(FinalTableRowNumber, InputTableLastColumn + 4).Value = Worksheets("Sheet1").Cells(1, ShopColumn).Value <SPAN style="color:#007F00">'Pur the shop number in column you waned to!</SPAN><br>****** <SPAN style="color:#00007F">Else</SPAN> <SPAN style="color:#007F00">' If**defect =0, then...</SPAN><br>****** <SPAN style="color:#007F00">'Do nothing!!</SPAN><br>****** <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br>**** <SPAN style="color:#00007F">Next</SPAN> DefectCodeRow <SPAN style="color:#007F00">' Try next row</SPAN><br>** <SPAN style="color:#00007F">Next</SPAN> ShopColumn <SPAN style="color:#007F00">' After all rows are tried then go and start again for next shop column</SPAN><br><SPAN style="color:#007F00">'</SPAN><br><SPAN style="color:#007F00">' Now put the headings where you wanted!</SPAN><br>Worksheets("sheet1").Cells(1, InputTableLastColumn + 2).Value = "Defect Code"<br>Worksheets("sheet1").Cells(1, InputTableLastColumn + 3).Value = "Number of Defects"<br>Worksheets("sheet1").Cells(1, InputTableLastColumn + 4).Value = "Shop Number"<br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN> <SPAN style="color:#007F00">'SimpleSortOfSort()</SPAN></FONT>

….and the Code again simplified without ‘Green comment graffiti etc:

Code:
Sub SimplifiedSimpleSortOfSort()FinalTableRowNumber = 1
   For ShopColumn = 2 To Cells(1, Columns.Count).End(xlToLeft).Column - 1
     For DefectCodeRow = 2 To Cells(Rows.Count, 1).End(xlUp).Row
       If Cells(DefectCodeRow, ShopColumn).Value <> 0 Then
       Let FinalTableRowNumber = FinalTableRowNumber + 1
       Cells(FinalTableRowNumber, Cells(1, Columns.Count).End(xlToLeft).Column + 2).Value = Cells(DefectCodeRow, 1).Value
       Cells(FinalTableRowNumber, Cells(1, Columns.Count).End(xlToLeft).Column + 3).Value = Cells(DefectCodeRow, ShopColumn).Value
       Cells(FinalTableRowNumber, Cells(1, Columns.Count).End(xlToLeft).Column + 4).Value = Cells(1, ShopColumn).Value
       End If
     Next DefectCodeRow
   Next ShopColumn
Cells(1, Cells(1, Columns.Count).End(xlToLeft).Column + 2).Value = "Defect Code"
Cells(1, Cells(1, Columns.Count).End(xlToLeft).Column + 3).Value = "Number of Defects"
Cells(1, Cells(1, Columns.Count).End(xlToLeft).Column + 4).Value = "Shop Number"
End Sub


…..when applied to your raw data, gives this:



Book1
ZAAABACADAEAF
1TOTALSDefect CodeNumber of DefectsShop Number
26AC556
30CP116
46E116
51E266
65AW1167
712AC158
83327AF138
90AW11078
100L1108
111AC339
121AF129
131AW12739
146L1229
150AW1146010A
160AC1110B
170AC4110B
18251L13210B
19AW14210B-2
20AW114610B-3
21AF1111
22AW1100611
23L19511
24AF1113A
25D1113B
26AF1214A
27AW15714A
28L112414A
29AC3114B
30AF1214B
31AW118814B
32AC3215
33AF11L3-3
34
Sheet1


Or when applied to this sample data……


Book1
ABCDEFGHIJ
1Defect CodeShop 1Shop 6Shop 7Shop 8Shop 9Shop 10AShop 10BTotals
2AC10405001
3AC20000000
4AC30000300
5AC40000001
6
7
Sheet1


..gives this:



Book1
IJKLMN
1TotalsDefect CodeNumber of DefectsShop Number
2AC14Shop 6
3AC15Shop 8
4AC33Shop 9
5AC11Shop 10B
6AC41Shop 10B
7
8
Sheet1



The full File with your Raw data and the code (in Sheet1 Module) is here.
FileSnack | Easy file sharing

If you need any Basic help in getting started running any of our codes, then get back and one of us will give you some instructions

Alan


P.s. “A Picture paints a thousand Words”. It is most useful if, along with your description of the problem, you also . 1 include a full table (like your raw data one, but perhaps a bit shortened in rows and Columns because of space limitation in the Thread).

. 2 A table showing exactly how the output table should then look (with manually typed in results) once the macro is run.

(. 3 Although the input and output tables can be on the same sheet, it is somewhat more convenient if they are on different sheets, again because of the space limitations in the Thread).
 
Last edited:
Upvote 0
The full code again without the ***** stuff which should not be there?!?

<font face=Calibri><SPAN style="color:#007F00">'Option Explicit 'forces you to define your variable Types. - saves copmuter space and error show up easier</SPAN><br><SPAN style="color:#00007F">Sub</SPAN> SimpleSortOfSort()<br><SPAN style="color:#00007F">Dim</SPAN> InputTableLastColumn <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Byte</SPAN>, InputTableLastRow <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Byte</SPAN>, ShopColumn <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Byte</SPAN>, DefectCodeRow <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Byte</SPAN> <SPAN style="color:#007F00">'Define variable for last Column and Last Row and a Count variable for Columnns and a count for Rows. (Byte limits size to 255)</SPAN><br><SPAN style="color:#00007F">Let</SPAN> InputTableLastColumn = Worksheets("Sheet1").Cells(1, Columns.Count).End(xlToLeft).Column <SPAN style="color:#007F00">'Go to last Column in first Row, then go back left until you reach the last cell with data in in Row 1, then give that column Number</SPAN><br><SPAN style="color:#00007F">Let</SPAN> InputTableLastRow = Worksheets("Sheet1").Cells(Rows.Count, 1).End(xlUp).Row <SPAN style="color:#007F00">'Go to last Row in first Column, go back up until you reach the last cell with data in in column1 1, then give that Row Number</SPAN><br><SPAN style="color:#00007F">Dim</SPAN> FinalTableRowNumber <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Byte</SPAN> <SPAN style="color:#007F00">'define the variable used for the number of your outpu Rows in a loop which works out the contents of each row.  (Byte limits you to 255 Rows)</SPAN><br><SPAN style="color:#00007F">Let</SPAN> FinalTableRowNumber = 1 <SPAN style="color:#007F00">' Give it a first value for first row</SPAN><br><SPAN style="color:#007F00">'</SPAN><br><SPAN style="color:#007F00">'Now go througth looking for wot you want in the final table.....</SPAN><br>   <SPAN style="color:#00007F">For</SPAN> ShopColumn = 2 <SPAN style="color:#00007F">To</SPAN> InputTableLastColumn - 1  <SPAN style="color:#007F00">'Go through every Shop Column...</SPAN><br>     <SPAN style="color:#00007F">For</SPAN> DefectCodeRow = 2 <SPAN style="color:#00007F">To</SPAN> InputTableLastRow <SPAN style="color:#007F00">'...then go through every table Row defect number</SPAN><br>       <SPAN style="color:#00007F">If</SPAN> Worksheets("Sheet1").Cells(DefectCodeRow, ShopColumn).Value <> 0 <SPAN style="color:#00007F">Then</SPAN> <SPAN style="color:#007F00">' Then.... If you have a defect.....</SPAN><br>       <SPAN style="color:#00007F">Let</SPAN> FinalTableRowNumber = FinalTableRowNumber + 1 <SPAN style="color:#007F00">'Start new Row in final table</SPAN><br>       Worksheets("Sheet1").Cells(FinalTableRowNumber, InputTableLastColumn + 2).Value = Worksheets("Sheet1").Cells(DefectCodeRow, 1).Value <SPAN style="color:#007F00">'Put Defect Code in colum you wanted to</SPAN><br>       Worksheets("Sheet1").Cells(FinalTableRowNumber, InputTableLastColumn + 3).Value = Worksheets("Sheet1").Cells(DefectCodeRow, ShopColumn).Value <SPAN style="color:#007F00">'Put number of Defects in column you wanted to!</SPAN><br>       Worksheets("Sheet1").Cells(FinalTableRowNumber, InputTableLastColumn + 4).Value = Worksheets("Sheet1").Cells(1, ShopColumn).Value <SPAN style="color:#007F00">'Pur the shop number in column you waned to!</SPAN><br>       <SPAN style="color:#00007F">Else</SPAN> <SPAN style="color:#007F00">' If  defect =0, then...</SPAN><br>       <SPAN style="color:#007F00">'Do nothing!!</SPAN><br>       <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br>     <SPAN style="color:#00007F">Next</SPAN> DefectCodeRow <SPAN style="color:#007F00">' Try next row</SPAN><br>   <SPAN style="color:#00007F">Next</SPAN> ShopColumn <SPAN style="color:#007F00">' After all rows are tried then go and start again for next shop column</SPAN><br><SPAN style="color:#007F00">'</SPAN><br><SPAN style="color:#007F00">' Now put the headings where you wanted!</SPAN><br>Worksheets("sheet1").Cells(1, InputTableLastColumn + 2).Value = "Defect Code"<br>Worksheets("sheet1").Cells(1, InputTableLastColumn + 3).Value = "Number of Defects"<br>Worksheets("sheet1").Cells(1, InputTableLastColumn + 4).Value = "Shop Number"<br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN> <SPAN style="color:#007F00">'SimpleSortOfSort()</SPAN></FONT>
 
Upvote 0

Forum statistics

Threads
1,215,616
Messages
6,125,860
Members
449,266
Latest member
davinroach

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