Hi and Welcome,
I Take it you know which column this will appear?? And are you wanting the information removing, or the entire row?
VB Code:
'Set the cell below population
Do While ActiveCell.Row < 99
ActiveCell.EntireRow.Clear
ActiveCell.OffSet(1,0).Select
Loop
Or
VB Code:
Range("A2").Select
Do While ActiveCell.Value <> "AVERAGE"
ActiveCell.EntireRow.Delete
Loop
However with the second one you will need to know the exact cell the word AVERAGE will appear in, and also move the cursor below the row containing POPULATION.
To loop around the sheets do
VB Code:
Dim i As Integer
For i = 1 to 10
Sheets(i).Activate
'loop around Cells here
Next i