You could also use a simple loop:
[VBA]
Dim lngCol As Long
For lngCol = 1 To 200 Step 4
Range(Cells(4, lngCol), Cells(20, lngCol)).ClearContents
Next lngCol
[/VBA]
You could also use a simple loop:
[VBA]
Dim lngCol As Long
For lngCol = 1 To 200 Step 4
Range(Cells(4, lngCol), Cells(20, lngCol)).ClearContents
Next lngCol
[/VBA]
Be as you wish to seem