Help with VBA If/then statement match cells in same row in two columns on two different sheets then copy next cell from sheet 2 to sheet 1.

jhardluck

New Member
Joined
May 9, 2022
Messages
7
Office Version
  1. 365
Platform
  1. Windows
I need help with a VBA script for Excel. I've tried modifying several I found on line but, none have worked for what I need. I need to create a VBA script, i assume with an If/then statement. I need to look at columns B and C in Sheet 1 for matching cells in columns B and C in Sheet 2. The two matching cells in Sheet 2 should be beside each other in a row as well. If a matching pair of cells is found in Sheet 2, the cells next to the match should be copied and pasted into Sheet 1 into column M next to the other matching pair. After I get this first script correct I need to create another seperate script. However, t will be copying two cells from one sheet to the other if, matches are found in a row in two columns in two sheets as well. Any help that anyone can provide would be greatly appreciated. Thank you.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
try this, it is untested!!!
VBA Code:
Sub test()
Dim outarr()
With Worksheets("sheet2")
lastrow = .Cells(Rows.Count, "A").End(xlUp).Row
datarr = .Range(.Cells(1, 1), .Cells(lastrow, 4))  'load all the data in columns A to D in sheet 2 inot a variant array
End With
With Worksheets("sheet1")
lastA = .Cells(Rows.Count, "A").End(xlUp).Row
inarr = .Range(.Cells(1, 1), .Cells(lastA, 2))  'load all the data in columns A to D in sheet 2 inot a variant array

ReDim outarr(1 To lastA, 1 To 2) ' dimension output array for each input row and two output variables
For i = 2 To lastA    '  Assume the data starts on row 2
 For j = 2 To lastrow '  Assume the data starts on row 2
   If inarr(i, 1) = datarr(j, 1) And inarr(i, 2) = datarr(j, 2) Then
    outarr(i, 1) = datarr(j, 3) ' copy column C value
    outarr(i, 2) = datarr(j, 4) ' copy column D value
    Exit For  ' exit inner loop since we foudn match
   End If
 Next j
Next i
.Range(.Cells(1, 13), .Cells(lastA, 14)) = outarr
End With


End Sub
 
Upvote 0
Unfortunately this did not work. I'm going to upload a Mini-sheet copy of the sheets in my workbook to see if that helps. Again the steps I am trying to do are listed below.
  1. Creating a VBA script to use as a macro attached to a button on the "Dealer POS Inventory" sheet.
  2. The macro will compare the two consecutive cells in column B & C on sheet "Dealer POS Inventory" to two consecutive cells B & C on sheet "POS_TREAD_TABLE".
  3. If consecutive matching cells are found in column B & C on sheet "POS_TREAD_TABLE" the copy the corresponding cell data in column D on this sheet to the row with the matching pair of cells on sheet "Dealer POS Inventory" but in column M of that row.
  4. Once I have this working I will have to create another similar script looking for two consecutive matching cells between two sheets but instead of copying data from the corresponding cells to the match in one sheet to the other, I will have to copy two corresponding cells over.
  5. If I can get the first script working I should be able to modify it to create the second script.
  6. I tried using the original script you submitted but, it would not work as it was. I tried modifying it identifying ranges, etc...
 
Upvote 0
Test Sheet.xlsm
ABCDEFGHIJ
1
2
3
410100208203MRT XTA-2 2033.583.4143005A586.520210907
510100208211MRT XTA-2 2113.583.4143005A49020210907
610100208219MRT XTA-2 2193.583.4143005A76520210707
710100208225MRT XTA-2 2253.583.4143005A53120220301
810100208240MRT XTA-2 2403.583.4143005A54420210727
910100209210MRT XDS2+ 2104.174.0743005A79920220517
1010100209220MRT XDS2+ 2204.173.9743005A102920211015
1110100209230MRT XDS2+ 2304.174.0543005A51020220524
1210100210224MRT MD XDN2 2204.063.8743005A777.8820211101
1310100231095MRT XDA2 19AT 2253.873.6943005A219.1520220118
1410100231510MRT XDA2 23AT 2323.873.6943005A624.5920211201
1510100231584MRT XDA2 23AT 2113.873.6943005A20.8520210802
1610100231590MRT XDA2 23AT 2193.873.8243005A1452.620220524
1710100231595MRT XDA2 23AT 2253.873.7743005A578.8520220503
1810100232020MRT X Line Energy D 2204.44.2943005A2991.9920220524
1910100232030MRT X Line Energy D 2304.44.2943005A4309.520220524
2010100232040MRT X Line Energy D 2404.44.443005A1826.5220220524
2110100232584MRT XDC 22 2113.613.5543005A1072.1720220412
2210100232590MRT XDC 22 2193.613.6143005A4982.3120220524
2310100232595MRT XDC 22 2253.613.6143005A4575.3220220524
2410100233070MRT XDHT 1943.723.5443005A610.7320210727
2510100233080MRT XDHT 2033.723.5443005A1339.4420211221
2610100233084MRT XDHT 2113.723.5443005A2699.1320211201
2710100233090MRT XDHT 2193.723.7243005A1513.9220220419
2810100233098MRT XDHT 2403.723.7243005A768.520220517
2910100241050MRT XDE M/S 1704.084.0843005A290.1720220426
3010100241060MRT XDE M/S 1804.083.8943005A757.7920220215
3110100241077MRT XDE M/S 1904.084.0843005A893.7520220517
3210100241080MRT XDE M/S 2004.084.0343005A904.6420220503
3310100241085MRT XDE M/S 2104.083.9843005A1474.6220220517
3410100241090MRT XDE M/S 2204.084.0843005A1517.9220220503
3510100241095MRT XDE M/S 2304.083.9643005A803.2820220510
3610100250080MRT XT-1 2033.583.4143005A143.6620210831
3710100250090MRT XT-1 2193.583.4143005A875.4420220208
3810100250095MRT XT-1 2253.583.4143005A695.8420220201
3910100250200MRT X Line Energy T 2003.923.7343005A677.5320220308
4010100250210MRT X Line Energy T 2103.923.7943005A889.8320220510
4110100250220MRT X Line Energy T 2203.923.9243005A6606.5620220524
4210100250230MRT X Line Energy T 2303.923.9143005A3515.3820220524
4310100250240MRT XT-1 2403.583.4143005A258.3820211201
4410100250241MRT X Line Energy T 2403.923.9243005A63020220510
4510100255090MRT XTA-1 2193.53.3343005A463.4320220118
4610100255095MRT XTA-1 2253.53.3343005A18920211201
4710100255140MRT XTA-1 2403.53.3343005A416.8820210406
4810100260050MRT XZA 1703.813.8143005A953.2620220524
4910100260060MRT XZA 1803.813.6343005A1173.920211229
5010100260070MRT XZA 1943.813.6343005A655.9920220104
5110100260080MRT XZA 2033.813.6343005A1959.0720211201
5210100260084MRT XZA 2113.813.7643005A833.4920220510
5310100260090MRT XZA 2193.813.7343005A791.6720220517
5410100260095MRT XZA 2253.813.8143005A789.0820220510
5510100261060MRT XZE 1773.813.6343005A689.9620210831
5610100261070MRT XZE 1943.813.6343005A1178.3520210927
5710100261080MRT XZE 2033.813.6343005A963.2820220203
5810100261084MRT XZE 2113.813.6643005A943.6820220510
5910100261090MRT XZE 2193.813.8143005A89320220517
6010100261095MRT XZE 2253.813.843005A1132.6120220524
6110100270010MRT XD4 2103.583.4143005A1725.4220220405
6210100270020MRT XD4 2203.583.4643005A262.0820220517
6310100270030MRT XD4 2303.583.5843005A1659.9920220524
6410100272080MRT XZY 2033.683.543005A1467.9520210927
6510100272084MRT XZY 2113.683.543005A521.0520220323
6610100272090MRT XZY 2193.683.543005A829.6420210927
6710100272095MRT XZY 2253.683.543005A307.6320211006
6810100272320MRT XZY WB 3204.063.8743005A1277.2420210927
6910100272710MRT XZY3 2104.064.0643005A27.420220419
7010100272720MRT XZY3 2204.063.8743005A280.1320220118
7110100272730MRT XZY3 2304.063.8743005A271.8320211201
7210100272750MRT XZY3 2504.063.8743005A1085.320210927
7310100272770MRT XZY3 2704.063.8743005A751.720210206
7410100272799MRT XZY3 290 22 RECAMIC V24.354.1443005A10.720211201
7510100276012MRT XDY 2523.643.4743005A67.8420211201
7610100276095MRT XDY 2253.643.4743005A26.0120220315
7710100276584MRT XDY-1 2113.643.4743005A83.1920211201
7810100276590MRT XDY-1 2193.643.4743005A30.120220125
7910100277025MRT XDU-S 2203.833.6543005A745.6920211207
8010100277029MRT XDU-S 2303.833.6543005A1150.3820211201
8110100277052MRT XDU-S 2503.833.7543005A530.4620220517
8210100277072MRT XDU-S 2703.833.8343005A370.9420220524
8310100278025MRT XZU-S 2203.683.543005A2927.8820220405
8410100278029MRT XZU-S 2303.683.543005A234920220405
8510100278044MRT XZU-S 2403.683.543005A281.220211015
8610100278052MRT XZU-S 2503.683.6843005A1341.0720220503
8710100278370MRT XZU-S 2703.683.6843005A1798.520220510
8810100280205MRT XMULTI T-SA 2054.07443005A3766.8420220524
8910100280215MRT XMULTI T-SA 2154.074.0743005A1937.5820220517
9010100280225MRT XMULTI T-SA 2254.074.0743005A168020220524
9110100291015MRT XTY SA 21543.8143005A385.2820210528
9210100293020MRT XDN2 2204.064.0643005A3538.2620220510
9310100293030MRT XDN2 2304.063.9343005A2252.6920220503
9410100293040MRT XDN2 2404.064.0643005A2320.8620220524
9510100294375MRT X One Line Grip D 3755.185.1843005A58520220524
9610100294385MRT X One Line Grip D 3855.184.9343005A50.2520211101
9710100297376MRT X ONE LET 375 T 133.843.5243005A528.320210712
9810100297377MRT X ONE LINE ENERGY T 3753.843.6643005A1128.520210923
9910100301375MRT X One LED 3754.464.2543005A393.7520210518
10010100302220MRT X MULTI ENERGY D 2204.44.2643005A2932.320220524
10110100302225MRT XDHT 2253.723.7243005A2002.7320220517
10210100302230MRT X MULTI ENERGY D 2304.44.1943005A3061.2820220405
10310100302240MRT X MULTI ENERGY D 2404.44.2443005A773.9420220524
10410100302375MRT X ONE MET 3753.843.6643005A1071.5920220208
10510100303220MRT X MULTI D 22043.8143005A724.2420210914
10610100303230MRT X MULTI D 23043.8443005A1011.6820220510
10710140410279MM GLOBAL 2302.82.6743005A137.220220125
10810140410290MM GLOBAL 2202.82.6743005A303.9720220222
10910140466280MM HIGHWAY LP 2052.82.6743005A135.7420210406
11010141109490OLIVER CD-LL 2203.13.143005A3103.7520211201
11110141109495OLIVER CD-LL 2303.13.143005A619.7520210414
11210142010885OLIVER IT2 2102.812.8143005A875.0520220419
11310142010890OLIVER IT2 2202.812.8143005A1626.520220517
11410142010895OLIVER IT2 2302.812.8143005A904.520220503
11510147069330MM WIDE BASE LUG 3302.872.7343005A18020211117
11610148063812MM Z TRAK 2552.872.7343005A178.6320210914
11710148063824MM Z TRAK 2402.872.7343005A15.2520211117
11810148063827MM Z TRAK 2702.872.7343005A82020211110
11910148063828MM Z TRAK 2802.872.7343005A28020210525
12010148063890MM Z TRAK 2202.872.7343005A57.320211117
12110148065480MM DEEP DRIVE 2052.82.6743005A22.6120220118
12210148065485MM DEEP DRIVE 2152.82.6743005A44.7620211201
12310148065490MM DEEP DRIVE 2202.82.6743005A25.320211102
12410148065660MM DRIVE MASTER 1802.82.6743005A1920211102
12510148065670MM DRIVE MASTER 1952.82.6743005A103.1520211221
12610148065680MM DRIVE MASTER 2052.82.6743005A641.6320220118
12710148065690MM DRIVE MASTER 2202.82.6743005A431.4520220125
12810148066285MM HIGHWAY LP 2152.82.6743005A126.920220208
12910148067295MM POWER TRAC 2302.82.6743005A527.2520210817
13010148067323MM PTT 2302.82.6743005A77.5220220308
13110148067370MM PTT 1952.82.6743005A181.7720211110
13210148067380MM PTT 2052.82.6743005A477.3820220308
13310148067707MM SPREAD AXLE (MegaMile) 1952.82.6743005A56020210923
13410148067708MM SPREAD AXLE (MegaMile) 2052.82.6743005A258020211229
13510148067724MM SPREAD AXLE (MegaMile) 2402.82.6743005A1556.2520211123
13610148067784MM SPREAD AXLE (MegaMile) 2102.82.6743005A72.5820211214
13710148067880MM HIGHWAY LP (SHALLOW) 2052.82.6743005A61.7820210511
13810148067885MM HIGHWAY LP (SHALLOW) 2152.82.6743005A456.6520220405
13910148067890MM HIGHWAY LP (SHALLOW) 2202.82.6743005A1104.920210907
14010148068980MM TRAILWAY 2052.82.6743005A475.7520220329
14110148068984MM TRAILWAY 2102.82.6743005A542.320220301
14210148068990MM TRAILWAY 2202.82.6743005A8320220125
14310148068995MM TRAILWAY 2302.82.6743005A17.2520211207
14410148069636MM WIDE BASE LUG DEEP 3602.872.7343005A498.7520210721
14510148069923MM WASTE HAULER RIB 2302.872.7343005A427.6320211201
14610148069980MM WASTE HAULER RIB 2052.872.7343005A313.6420211020
14710148069985MM WASTE HAULER RIB 2152.872.7343005A546.2520210511
14810148071480MM MM TRACTION 2052.82.6743005A23.520211110
14910148071490MM MM TRACTION 2202.82.6743005A26.920220329
15010188440247VIPAL 225V167 232.72.743005A29.7520220414
15110188440776VIPAL WHL 205 262.72.743005A2328.7220220523
15210188440780VIPAL WHL 240 262.72.743005A169020220429
15310188440831VIPAL 210V167E 222.72.743005A21020220429
15410188440833VIPAL 220 V167E 222.72.743005A27.520220429
15510188460014VIPAL 235V167 232.72.743005A276.7520220429
15610188460016VIPAL WHL 220 262.72.743005A2152.520220523
Dealer POS Inventory
 
Upvote 0
Test Sheet.xlsm
ABCD
1
2
3
448063284MM ATD 21060806
548063290MM ATD 22061067
648063295MM ATD 23061364
748063105MM ATD 24060478
848063212MM ATD 25060516
948065470MM DEEP DRIVE 19501113
1048065480MM DEEP DRIVE 20501135
1148065485MM DEEP DRIVE 21501215
1248065490MM DEEP DRIVE 22001367
1348065660MM DRIVE MASTER 18002144
1448065670MM DRIVE MASTER 19502171
1548065680MM DRIVE MASTER 20502276
1648065690MM DRIVE MASTER 22002425
1740410278MM GLOBAL 21002775
1840410290MM GLOBAL 22050424
1940410279MM GLOBAL 23002695
2048065980MM HCM 20503013
2148065990MM HCM 22003057
2248065910MM HCM 23503066
2348065912MM HCM 25003151
2448067850MM HIGHWAY LP (SHALLOW) 17003380
2548067860MM HIGHWAY LP (SHALLOW) 18003545
2648067880MM HIGHWAY LP (SHALLOW) 20503613
2748067885MM HIGHWAY LP (SHALLOW) 21503617
2848067890MM HIGHWAY LP (SHALLOW) 22003853
2940466270MM HIGHWAY LP 19504815
3040466280MM HIGHWAY LP 20504859
3148066285MM HIGHWAY LP 21504857
3248066570MM HWT 19505137
3348066580MM HWT 20505175
3448066509MM HWT 22000583
3548071480MM MM TRACTION 20506187
3648071490MM MM TRACTION 22006227
3748071495MM MM TRACTION 23078473
3848071410MM MM TRACTION 24080901
3948067280MM POWER TRAC 20507021
4048067285MM POWER TRAC 21507033
4148067295MM POWER TRAC 23060609
4248067370MM PTT 19523205
4348067380MM PTT 20529814
4448067385MM PTT 21501748
4548067390MM PTT 22014107
4648067323MM PTT 23038001
4748067311MM PTT 24033005
4848067707MM SPREAD AXLE (MegaMile) 19584063
4948067708MM SPREAD AXLE (MegaMile) 20506370
5048067784MM SPREAD AXLE (MegaMile) 21068761
5148067790MM SPREAD AXLE (MegaMile) 22039435
5248067724MM SPREAD AXLE (MegaMile) 24082838
5348064870MM TA 222 19508681
5448064880MM TA 222 20508691
5548064885MM TA 222 21508703
5648064890MM TA 222 22008728
5748068980MM TRAILWAY 20531517
5848068984MM TRAILWAY 21009149
5948068990MM TRAILWAY 22026629
6048068995MM TRAILWAY 23077487
6148068910MM TRAILWAY 24031272
6248069170MM ULTRA GRIP 19509462
6348069180MM ULTRA GRIP 20509474
6448069190MM ULTRA GRIP 22009625
6548069980MM WASTE HAULER RIB 20509900
6648069985MM WASTE HAULER RIB 21509910
6748069923MM WASTE HAULER RIB 23010170
6848069911MM WASTE HAULER RIB 24010052
6948069900MM WASTE HAULER RIB 24510375
7048069914MM WASTE HAULER RIB 27029785
7148069915MM WASTE HAULER RIB 28029994
7247069290MM WIDE BASE LUG 29042394
7347069330MM WIDE BASE LUG 33039509
7447069318MM WIDE BASE LUG 36249539
7548069636MM WIDE BASE LUG DEEP 36031642
7648069431MM WIDE BASE RIB 29010474
7748069441MM WIDE BASE RIB 31010499
7848069451MM WIDE BASE RIB 36010555
7948063880MM Z TRAK 20510746
8048063890MM Z TRAK 22015869
8148063824MM Z TRAK 24014162
8248063811MM Z TRAK 24510922
8348063812MM Z TRAK 25511148
8448063827MM Z TRAK 27018085
8548063828MM Z TRAK 28019869
8640632812MRT DLL 25000239
8744562512MRT DPW 25088608
8844562515MRT DPW 28006666
8945054012MRT MCL-DU 25009732
9000210194MRT MD XDN2 19087625
9100210204MRT MD XDN2 20088045
9200210214MRT MD XDN2 21088381
9300210224MRT MD XDN2 22088997
9400210234MRT MD XDN2 23089804
9500110017MRT X LED CM 80865
9600232020MRT X Line Energy D 22026837
9700232030MRT X Line Energy D 23027357
9800232040MRT X Line Energy D 24027540
9900250200MRT X Line Energy T 20068515
10000250210MRT X Line Energy T 21068646
10100250220MRT X Line Energy T 22069876
10200250230MRT X Line Energy T 23069941
10300250241MRT X Line Energy T 24070128
10400250250MRT X Line Energy T 25070263
10500250201MRT X Line Energy T Siped 20022028
10600250211MRT X Line Energy T Siped 21022707
10700250221MRT X Line Energy T Siped 22022865
10800250231MRT X Line Energy T Siped 23023546
10900250242MRT X Line Energy T Siped 24023951
11000250251MRT X Line Energy T Siped 25024032
POS_TREAD_TABLE
 
Upvote 0
Sub test()
Dim outarr()
With Worksheets("sheet2")
lastrow = .Cells(Rows.Count, "A").End(xlUp).Row
datarr = .Range(.Cells(1, 1), .Cells(lastrow, 4)) 'load all the data in columns A to D in sheet 2 inot a variant array
End With
With Worksheets("sheet1")
lastA = .Cells(Rows.Count, "A").End(xlUp).Row
inarr = .Range(.Cells(1, 1), .Cells(lastA, 2)) 'load all the data in columns A to D in sheet 2 inot a variant array

ReDim outarr(1 To lastA, 1 To 2) ' dimension output array for each input row and two output variables
For i = 2 To lastA ' Assume the data starts on row 2
For j = 2 To lastrow ' Assume the data starts on row 2
If inarr(i, 1) = datarr(j, 1) And inarr(i, 2) = datarr(j, 2) Then
outarr(i, 1) = datarr(j, 3) ' copy column C value
outarr(i, 2) = datarr(j, 4) ' copy column D value
Exit For ' exit inner loop since we foudn match
End If
Next j
Next i
.Range(.Cells(1, 13), .Cells(lastA, 14)) = outarr
End With


End Sub
 
Upvote 0
It would have been helpful to know which columns the values were in right from the start, all I had to do was change the columns from A nd B ( my assumption) to B and C, and to write the single output ( column D) to column M on sheet 1
VBA Code:
Sub test()
Dim outarr()
With Worksheets("Sheet2")
lastrow = .Cells(Rows.Count, "B").End(xlUp).Row
datarr = .Range(.Cells(1, 1), .Cells(lastrow, 4))  'load all the data in columns A to D in sheet 2 inot a variant array
End With
With Worksheets("sheet1")
lastA = .Cells(Rows.Count, "A").End(xlUp).Row
inarr = .Range(.Cells(1, 1), .Cells(lastA, 3))  'load all the data in columns A to D in sheet 2 inot a variant array

ReDim outarr(1 To lastA, 1 To 1) ' dimension output array for each input row
For i = 2 To lastA    '  Assume the data starts on row 2
 For j = 2 To lastrow '  Assume the data starts on row 2
   If inarr(i, 2) = datarr(j, 2) And inarr(i, 3) = datarr(j, 3) Then
    outarr(i, 1) = datarr(j, 4) ' copy column D value
    Exit For  ' exit inner loop since we foudn match
   End If
 Next j
Next i
.Range(.Cells(1, 13), .Cells(lastA, 13)) = outarr
End With


End Sub
 
Upvote 0
Solution
This worked perfectly on my test sheets that I submitted. I only ran into an issue with the formatting of my cells not staying when the information copied over. I'm sure I can figure that out. However, when I try to use the same VBA script in my real Worksheet I receive a compile error that it shows for fourth line in the script for "lastrow =". See the attached image for an example of what occurs when I run the script from my button in the Worksheet. As I stated, when I run it on the test file it works fine. Thank you for all of your help so far and the script you offered. This is helping tremendously with understanding VBA further.
1655758654571.png
 
Upvote 0
Your error implies that there is a subroutine or function in your workbook called "lastrow" . What I suggest you do is change "lastrow" in my macro to something else . e.g. lastrowPTT throughout this macros
ie:
VBA Code:
Sub test()
Dim outarr()
With Worksheets("Sheet2")
lastrowPTT = .Cells(Rows.Count, "B").End(xlUp).Row
datarr = .Range(.Cells(1, 1), .Cells(lastrowPTT, 4))  'load all the data in columns A to D in sheet 2 inot a variant array
End With
With Worksheets("sheet1")
lastA = .Cells(Rows.Count, "A").End(xlUp).Row
inarr = .Range(.Cells(1, 1), .Cells(lastA, 3))  'load all the data in columns A to D in sheet 2 inot a variant array

ReDim outarr(1 To lastA, 1 To 1) ' dimension output array for each input row
For i = 2 To lastA    '  Assume the data starts on row 2
 For j = 2 To lastrowPTT '  Assume the data starts on row 2
   If inarr(i, 2) = datarr(j, 2) And inarr(i, 3) = datarr(j, 3) Then
    outarr(i, 1) = datarr(j, 4) ' copy column D value
    Exit For  ' exit inner loop since we foudn match
   End If
 Next j
Next i
.Range(.Cells(1, 13), .Cells(lastA, 13)) = outarr
End With


End Sub
Note the method I have used does NOT copy the formatting across and itwould need a complete rewrite to copy the formatting becaus I have used variant arrays to make it much faster.
 
Upvote 0

Forum statistics

Threads
1,214,970
Messages
6,122,514
Members
449,088
Latest member
RandomExceller01

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