vba to find all instances of word, and replace adjacent column with formula

solidENM

Board Regular
Joined
Feb 23, 2017
Messages
93
Hello,
I have been at this all morning and cannot get it down. I am trying to search column "d" for "wire" or "roll" and insert a formula in column B of each instances row. The formula is counting all instances from another tab. For some reason, my larger macro (bottom code) makes the formula static and i need it to remain a formula, updating when the other tab changes.


I used the macro recorder to get the below code (upper code). The code below does work for me, but it does not loop through all instances, and it does not necessarily start from the beginning of the sheet. Ideally, id prefer to get the bottom code working, but if someone can work with either code, id be more than happy to implement whichever method works.


my workaround macro--
Sub tally_wire()
'


Cells.Find(What:="wire", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
Range(ActiveCell.Offset(columnOffset:=-2).Address).Select
Selection.FormulaArray = _
"=SUMIF('bom sheet'!C[2],Assembly!RC[3],'bom sheet'!C)"


End Sub





my original code-- this fetches the value, but it is static and i need it to dynamically update as changes are made.

' wire and roll
Dim Cnt As Long
lrow = Cells.Find("*", After:=Range("A1"), SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
StrArray = Array("1/8", "1/4", "1/2", "3/4")
For Cnt = 2 To lrow


Dim StrArray2 As Variant



StrArray2 = Array("wire", "roll")
For Each Arr2 In StrArray2
If Cells(Cnt, 4) Like "*" & Arr2 & "*" Then
'does not make qty dynamic.
Cells(Cnt, 2) = "=SUMIF('bom Sheet'!C[2],Assembly!RC[3],'bom Sheet'!C)"


End If
Next Arr2
Next Cnt
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
so sheet 2 column A has some words and in sheet 1 you want the row numbers of all matches ?
Sheet 1 (bom sheet) has part names with quantities of each length.
Sheet 2 (assembly sheet) needs to have total overall quantity for each part.

example: 12ft section of wire a, 10ft section of wire A, 11 ft section of Wire color b.
sheet 2 would show as 22 ft of wire a, 11 feet of wire color b.

sheet 1 functions as the build list, and sheet 2 is the ordering list.
 
Last edited:
Upvote 0
so sheet 2 column A has some words and in sheet 1 you want the row numbers of all matches ?
I realized i did not directly respond to your question. We can ignore the multiple sheets since I have the formula for that worked out. The macro I got to scrape sheet 2 stops at the first instance it finds.

I have the words in column D. I need a macro that will find all cells containing "wire" in column D, and paste a formula into column B of the same row.
 
Upvote 0
Hi OldBrewer,
this is the code the macro recorder spit out. I used the find function to search column D, Sheet 2 for the word "wire" in a cell. A sumif formula is pasted into column A (Sheet 1) to tally the total instances of wire in column A on sheet2 (bom sheet). This only runs once, and i need it to loop through each instance since we use different sizes of wire. The overall page is a build list, and a buy list. I need the buy list (Sheet 1, assembly sheet) to show total of each wire thickness.

column B: qty
Column D: part name.


Sub tally_wire()
'




Cells.Find(What:="wire", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
Range(ActiveCell.Offset(columnOffset:=-2).Address).Select
Selection.FormulaArray = _
"=SUMIF('bom sheet'!C[2],Assembly!RC[3],'bom sheet'!C)"




End Sub





sample excel below of sheet 2 (bom sheet). results would be wire 16g-2pcs, wire 14g-3pcs, wire 10g-25pcs
[TABLE="width: 376"]
<colgroup><col><col><col span="2"></colgroup><tbody>[TR]
[TD]Item[/TD]
[TD]QTY.[/TD]
[TD]color[/TD]
[TD]Part Num.[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]1[/TD]
[TD]black[/TD]
[TD]wire 16g[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]1[/TD]
[TD]black[/TD]
[TD]wire 16g[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]2[/TD]
[TD]red[/TD]
[TD]wire 14g[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]25[/TD]
[TD]black[/TD]
[TD]wire 10g[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]1[/TD]
[TD]red[/TD]
[TD]wire 14g[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 
Upvote 0
[TABLE="width: 1088"]
<colgroup><col width="64" span="4" style="width:48pt"> <col width="64" span="13" style="width:48pt"> </colgroup><tbody>[TR]
[TD="class: xl23, width: 64"]Item[/TD]
[TD="class: xl23, width: 64"]QTY.[/TD]
[TD="class: xl23, width: 64"]color[/TD]
[TD="class: xl23, width: 64"]Part Num.[/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[/TR]
[TR]
[TD="class: xl23"]2[/TD]
[TD="class: xl23"]1[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]wire 16g[/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]
[TR]
[TD="class: xl23"]3[/TD]
[TD="class: xl23"]1[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]wire 16g[/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]
[TR]
[TD="class: xl23"]4[/TD]
[TD="class: xl23"]2[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]wire 14g[/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]
[TR]
[TD="class: xl23"]5[/TD]
[TD="class: xl23"]25[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]wire 10g[/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]
[TR]
[TD="class: xl23"]6[/TD]
[TD="class: xl23"]1[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]wire 14g[/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]
[TR]
[TD="class: xl23"]7[/TD]
[TD="class: xl23"]4[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]rod 5 cm[/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]
[TR]
[TD="class: xl23"]8[/TD]
[TD="class: xl23"]5[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]rod 8 cm[/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]
[TR]
[TD="class: xl23"]9[/TD]
[TD="class: xl23"]33[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]rod 10 cm[/TD]
[TD][/TD]
[TD][/TD]
[TD="class: xl23"] [/TD]
[TD="class: xl23"]wire 10g[/TD]
[TD="class: xl23"]wire 14g[/TD]
[TD="class: xl23"]wire 16g[/TD]
[TD="class: xl23"]rod 5 cm[/TD]
[TD="class: xl23"]rod 8 cm[/TD]
[TD="class: xl23"]rod 10 cm[/TD]
[TD="class: xl23"]rod 12 cm[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="class: xl23"]10[/TD]
[TD="class: xl23"]20[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]rod 12 cm[/TD]
[TD][/TD]
[TD][/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]0[/TD]
[TD="class: xl23"]9[/TD]
[TD="class: xl23"]0[/TD]
[TD="class: xl23"]43[/TD]
[TD="class: xl23"]25[/TD]
[TD="class: xl23"]19[/TD]
[TD="class: xl23"]50[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="class: xl23"]11[/TD]
[TD="class: xl23"]1[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]wire 16g[/TD]
[TD][/TD]
[TD][/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]75[/TD]
[TD="class: xl23"]0[/TD]
[TD="class: xl23"]6[/TD]
[TD="class: xl23"]26[/TD]
[TD="class: xl23"]12[/TD]
[TD="class: xl23"]58[/TD]
[TD="class: xl23"]26[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="class: xl23"]12[/TD]
[TD="class: xl23"]1[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]wire 16g[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD="align: right"]349[/TD]
[TD]check[/TD]
[TD][/TD]
[/TR]
[TR]
[TD="class: xl23"]13[/TD]
[TD="class: xl23"]2[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]wire 14g[/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]
[TR]
[TD="class: xl23"]14[/TD]
[TD="class: xl23"]25[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]wire 10g[/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]
[TR]
[TD="class: xl23"]15[/TD]
[TD="class: xl23"]1[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]wire 14g[/TD]
[TD][/TD]
[TD][/TD]
[TD="colspan: 8"]if you had a summary table on each tab it would be simple to get the grand totals[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD="class: xl23"]16[/TD]
[TD="class: xl23"]15[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]rod 5 cm[/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]
[TR]
[TD="class: xl23"]17[/TD]
[TD="class: xl23"]20[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]rod 8 cm[/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]
[TR]
[TD="class: xl23"]18[/TD]
[TD="class: xl23"]25[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]rod 10 cm[/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]
[TR]
[TD="class: xl23"]19[/TD]
[TD="class: xl23"]30[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]rod 12 cm[/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]
[TR]
[TD="class: xl23"]20[/TD]
[TD="class: xl23"]10[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]rod 5 cm[/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]
[TR]
[TD="class: xl23"]21[/TD]
[TD="class: xl23"]1[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]wire 16g[/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]
[TR]
[TD="class: xl23"]22[/TD]
[TD="class: xl23"]1[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]wire 16g[/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]
[TR]
[TD="class: xl23"]23[/TD]
[TD="class: xl23"]2[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]wire 14g[/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]
[TR]
[TD="class: xl23"]24[/TD]
[TD="class: xl23"]25[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]wire 10g[/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]
[TR]
[TD="class: xl23"]25[/TD]
[TD="class: xl23"]1[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]wire 14g[/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]
[TR]
[TD="class: xl23"]26[/TD]
[TD="class: xl23"]7[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]rod 5 cm[/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]
[TR]
[TD="class: xl23"]27[/TD]
[TD="class: xl23"]12[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]rod 8 cm[/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]
[TR]
[TD="class: xl23"]28[/TD]
[TD="class: xl23"]19[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]rod 10 cm[/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]
[TR]
[TD="class: xl23"]29[/TD]
[TD="class: xl23"]26[/TD]
[TD="class: xl23"]black[/TD]
[TD="class: xl23"]rod 12 cm[/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]
[TR]
[TD="class: xl23"]30[/TD]
[TD="class: xl23"]33[/TD]
[TD="class: xl23"]red[/TD]
[TD="class: xl23"]rod 5 cm[/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]
[TR]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/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]
[TR]
[TD="class: xl22"][/TD]
[TD="class: xl22"]349[/TD]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/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]
[TR]
[TD="class: xl22"][/TD]
[TD="class: xl22"]check[/TD]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/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]
[TR]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/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]
[TR]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/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]
[TR]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/TD]
[TD="class: xl22"][/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]
 
Upvote 0

Forum statistics

Threads
1,223,908
Messages
6,175,305
Members
452,633
Latest member
DougMo

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