You are on page 1of 1

Sub CCM()

'
' CCM Macro
'

'
Dim i As Integer
i = 1
Columns("A:A").Select
Selection.Delete Shift:=xlToLeft
ActiveWindow.SmallScroll Down:=-12
Columns("B:F").Select
Selection.Delete Shift:=xlToLeft
Rows("1:1").Select
Selection.Delete Shift:=xlUp
Do While i < 100
If (Cells(i, 1).Value = "Stage") Then
Rows(i).Select
Selection.Delete Shift:=xlUp
Rows(i + 1 & ":" & i + 5).Select
Selection.Delete Shift:=xlUp
End If
i = i + 1
Loop
End Sub

You might also like