Combining multiple array formulas

Garrix

New Member
Joined
Aug 13, 2014
Messages
28
I have several formulas used to calculate the average of a bunch of data points. Currently, I have to have a sub-section on a spare worksheet that then pulls those results back into the main sheet. I'm hoping that there is a way to bypass this, I know alot of people on this forum are hellaciously good at fixing things (as my more recent thread found..).

Current formula:
Code:
 =AVERAGE(IF(ISNUMBER(SEARCH("*PIEA*",PIESHEET!$E:$E)),IF(ISNUMBER(PIESHEET!$L:$L),PIESHEET!$L:$L,""),">0")
=AVERAGE(IF(ISNUMBER(SEARCH("*PIEB*",PIESHEET!$E:$E)),IF(ISNUMBER(PIESHEET!$L:$L),PIESHEET!$L:$L,""),">0")
=AVERAGE(IF(ISNUMBER(SEARCH("*PIEC*",PIESHEET!$E:$E)),IF(ISNUMBER(PIESHEET!$L:$L),PIESHEET!$L:$L,""),">0")

All resulting values then get put into a basic =average(result:cells).

Is there any way I can do the above in a single formula?
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Hi,
just to clarify, you want to simplify the formulae or combine the 3 seen in your thread into one?
 
Upvote 0
Hi,
just to clarify, you want to simplify the formulae or combine the 3 seen in your thread into one?

Hey again!

I would like to (if possible), combine all 3 formulas and then average them - in a single cell. Right now I'm using 4 cells to do that, and need a hidden sheet for the calculations.
 
Upvote 0
so for:
[TABLE="width: 130"]
<!--StartFragment--> <colgroup><col width="65" span="2" style="width:65pt"> </colgroup><tbody>[TR]
[TD="width: 65"]1PIEB2[/TD]
[TD="width: 65, align: right"]1[/TD]
[/TR]
[TR]
[TD]1PIEB3[/TD]
[TD="align: right"]2[/TD]
[/TR]
[TR]
[TD]1PIEB4[/TD]
[TD="align: right"]3[/TD]
[/TR]
[TR]
[TD]1PIEB5[/TD]
[TD="align: right"]4[/TD]
[/TR]
[TR]
[TD]1PIEB6[/TD]
[TD="align: right"]5[/TD]
[/TR]
[TR]
[TD]1PIEB7[/TD]
[TD="align: right"]6[/TD]
[/TR]
[TR]
[TD]1PIEB8[/TD]
[TD="align: right"]7[/TD]
[/TR]
[TR]
[TD]1PIEA3[/TD]
[TD="align: right"]1[/TD]
[/TR]
[TR]
[TD]1PIEA4[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]1PIEA5[/TD]
[TD="align: right"]4[/TD]
[/TR]
[TR]
[TD]1PIEA6[/TD]
[TD="align: right"]5[/TD]
[/TR]
[TR]
[TD]1HIFG5[/TD]
[TD="align: right"]10[/TD]
[/TR]
<!--EndFragment--></tbody>[/TABLE]

you would like to see not 3.333, 4 and nothing but just 3.667?
 
Upvote 0
so for:
[TABLE="width: 130"]
<tbody>[TR]
[TD="width: 65"]1PIEB2[/TD]
[TD="width: 65, align: right"]1[/TD]
[/TR]
[TR]
[TD]1PIEB3[/TD]
[TD="align: right"]2[/TD]
[/TR]
[TR]
[TD]1PIEB4[/TD]
[TD="align: right"]3[/TD]
[/TR]
[TR]
[TD]1PIEB5[/TD]
[TD="align: right"]4[/TD]
[/TR]
[TR]
[TD]1PIEB6[/TD]
[TD="align: right"]5[/TD]
[/TR]
[TR]
[TD]1PIEB7[/TD]
[TD="align: right"]6[/TD]
[/TR]
[TR]
[TD]1PIEB8[/TD]
[TD="align: right"]7[/TD]
[/TR]
[TR]
[TD]1PIEA3[/TD]
[TD="align: right"]1[/TD]
[/TR]
[TR]
[TD]1PIEA4[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]1PIEA5[/TD]
[TD="align: right"]4[/TD]
[/TR]
[TR]
[TD]1PIEA6[/TD]
[TD="align: right"]5[/TD]
[/TR]
[TR]
[TD]1HIFG5[/TD]
[TD="align: right"]10[/TD]
[/TR]
</tbody>[/TABLE]

you would like to see not 3.333, 4 and nothing but just 3.667?

Exactly!
 
Upvote 0
so for:
[TABLE="width: 130"]
<TBODY>[TR]
[TD="width: 65"]1PIEB2
[/TD]
[TD="width: 65, align: right"]1
[/TD]
[/TR]
[TR]
[TD]1PIEB3
[/TD]
[TD="align: right"]2
[/TD]
[/TR]
[TR]
[TD]1PIEB4
[/TD]
[TD="align: right"]3
[/TD]
[/TR]
[TR]
[TD]1PIEB5
[/TD]
[TD="align: right"]4
[/TD]
[/TR]
[TR]
[TD]1PIEB6
[/TD]
[TD="align: right"]5
[/TD]
[/TR]
[TR]
[TD]1PIEB7
[/TD]
[TD="align: right"]6
[/TD]
[/TR]
[TR]
[TD]1PIEB8
[/TD]
[TD="align: right"]7
[/TD]
[/TR]
[TR]
[TD]1PIEA3
[/TD]
[TD="align: right"]1
[/TD]
[/TR]
[TR]
[TD]1PIEA4
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]1PIEA5
[/TD]
[TD="align: right"]4
[/TD]
[/TR]
[TR]
[TD]1PIEA6
[/TD]
[TD="align: right"]5
[/TD]
[/TR]
[TR]
[TD]1HIFG5
[/TD]
[TD="align: right"]10
[/TD]
[/TR]
</TBODY>[/TABLE]

you would like to see not 3.333, 4 and nothing but just 3.667?


That would mean taking the average of a set of conditional averages!

[TABLE="width: 329"]
<COLGROUP><COL style="WIDTH: 55pt; mso-width-source: userset; mso-width-alt: 2616" width=74><COL style="WIDTH: 48pt" width=64><COL style="WIDTH: 17pt; mso-width-source: userset; mso-width-alt: 824" span=2 width=23><COL style="WIDTH: 48pt" span=4 width=64><TBODY>[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB2[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]1[/TD]
[TD="class: xl67, width: 23, bgcolor: transparent"] [/TD]
[TD="class: xl67, width: 23, bgcolor: transparent"] [/TD]
[TD="class: xl67, width: 64, bgcolor: transparent"]PIEA[/TD]
[TD="class: xl67, width: 64, bgcolor: transparent"]PIEB[/TD]
[TD="class: xl67, width: 64, bgcolor: transparent"]PIEC[/TD]
[TD="class: xl67, width: 64, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB3[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]2[/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent, align: right"]3.333333[/TD]
[TD="class: xl67, bgcolor: transparent, align: right"]4[/TD]
[TD="class: xl67, bgcolor: transparent, align: center"]#DIV/0![/TD]
[TD="class: xl67, bgcolor: transparent, align: right"]3.666667[/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB4[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]3[/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB5[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]4[/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB6[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]5[/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB7[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]6[/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB8[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]7[/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEA3[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]1[/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEA4[/TD]
[TD="class: xl65, width: 64, bgcolor: white"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEA5[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]4[/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEA6[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]5[/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1HIFG5[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]10[/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[TD="class: xl67, bgcolor: transparent"] [/TD]
[/TR]
</TBODY>[/TABLE]

E2, copied across to G2, calculates the conditional averages:
Rich (BB code):
=AVERAGEIF($A$1:$A$12,"*"&E1&"*",$B$1:$B$12)
H2 calculates in H2 the average of the averages in E2:G2 with:
Rich (BB code):
=AVERAGEIF(E2:G2,"<"&9.99E+307)
If such is intended, the foregoing is a fast set up. If you still insist on calculating such an average of averages by means of a single formula:

Control+shift+enter, not just enter...
Rich (BB code):
=AVERAGE(IF(ISNUMBER(AVERAGEIF($A$1:$A$12,"*"&{"PIEA";"PIEB";"PIEC"}&"*",$B$1:$B$12)),
  AVERAGEIF($A$1:$A$12,"*"&{"PIEA";"PIEB";"PIEC"}&"*",$B$1:$B$12)))
 
Upvote 0
Thanks for the feedback... so wildcards should be placed prior to curly bracket... well noted...
 
Upvote 0
Aladin, what would be the best approach if we wanted to get the average of all values considering the three conditions, instead of the average of averages?
 
Last edited:
Upvote 0
Aladin, what would be the best approach if we wanted to get the average of all values considering the three conditions, instead of the average of averages?

Control+shift+enter, not just enter:
Rich (BB code):
=AVERAGE(IF(ISNUMBER(SEARCH({"PIEA","PIEB","PIEC"},$A$1:$A$12)),
  IF(ISNUMBER($B$1:$B$12),$B$1:$B$12)))

Or with the search strings in E1:G1...
Rich (BB code):
=AVERAGE(IF(ISNUMBER(SEARCH(E1:G1,$A$1:$A$12)),
  IF(ISNUMBER($B$1:$B$12),$B$1:$B$12)))
 
Upvote 0
That would mean taking the average of a set of conditional averages!

[TABLE="width: 329"]
<tbody>[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB2[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]1[/TD]
[TD="class: xl67, width: 23, bgcolor: transparent"][/TD]
[TD="class: xl67, width: 23, bgcolor: transparent"][/TD]
[TD="class: xl67, width: 64, bgcolor: transparent"]PIEA[/TD]
[TD="class: xl67, width: 64, bgcolor: transparent"]PIEB[/TD]
[TD="class: xl67, width: 64, bgcolor: transparent"]PIEC[/TD]
[TD="class: xl67, width: 64, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB3[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]2[/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent, align: right"]3.333333[/TD]
[TD="class: xl67, bgcolor: transparent, align: right"]4[/TD]
[TD="class: xl67, bgcolor: transparent, align: center"]#DIV/0![/TD]
[TD="class: xl67, bgcolor: transparent, align: right"]3.666667[/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB4[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]3[/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB5[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]4[/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB6[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]5[/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB7[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]6[/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEB8[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]7[/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEA3[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]1[/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEA4[/TD]
[TD="class: xl65, width: 64, bgcolor: white"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEA5[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]4[/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1PIEA6[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]5[/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[/TR]
[TR]
[TD="class: xl65, width: 74, bgcolor: white"]1HIFG5[/TD]
[TD="class: xl66, width: 64, bgcolor: white"]10[/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[TD="class: xl67, bgcolor: transparent"][/TD]
[/TR]
</tbody>[/TABLE]

E2, copied across to G2, calculates the conditional averages:
Rich (BB code):
=AVERAGEIF($A$1:$A$12,"*"&E1&"*",$B$1:$B$12)
H2 calculates in H2 the average of the averages in E2:G2 with:
Rich (BB code):
=AVERAGEIF(E2:G2,"<"&9.99E+307)
If such is intended, the foregoing is a fast set up. If you still insist on calculating such an average of averages by means of a single formula:

Control+shift+enter, not just enter...
Rich (BB code):
=AVERAGE(IF(ISNUMBER(AVERAGEIF($A$1:$A$12,"*"&{"PIEA";"PIEB";"PIEC"}&"*",$B$1:$B$12)),
  AVERAGEIF($A$1:$A$12,"*"&{"PIEA";"PIEB";"PIEC"}&"*",$B$1:$B$12)))

I'm getting a div/0 error, not sure if I may have screwed it up. I'm basically trying to use this formula in combination with the one you gave me in the other thread

Rich (BB code):
=SUM(IF(ISNUMBER(MATCH(TRIM($B$2:INDEX($B:$B,MATCH(REPT("z",255),$B:$B))),   J2:INDEX(J:J,MATCH(REPT("z",255),J:J)),0)),1))


I'm trying to average from that list of values, then average the total average in each column. Maybe I should have started with that?
 
Upvote 0

Forum statistics

Threads
1,223,167
Messages
6,170,469
Members
452,329
Latest member
Irefsports

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