Try this
Sub test()
If Not Application.Intersect(Range("A28,A32,A36,A40,A44,A48,A52,A56,A60"), ActiveCell) Is Nothing Then
ActiveCell.Resize(4).EntireRow.Delete
End If
End Sub
--
Regards Ron de Bruin
http://www.rondebruin.nl
"Corey" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> The below code does not work, but how can i get it carry out what it says?
>
> Private Sub CommandButton13_Click()
> With activeworksheet
> Dim rng As Range
> Set rng = Range("A28,A32,A36,A40,A44,A48,A52,A56,A60")
> If ActiveCell = rng Then ' <=== If selected cell is in range above ??
> .Row -.Row + 4 '<==== Then delete the ROW that the selected cell is in and
> the 3 ROWS below it ALSO??
> .Delete
>
> End If
> End With
> End Sub
>
> Corey....
>
>