Option Explicit
Sub Macro1()
' Macro recorded 6/26/2008 by Sa_DQ (GPE.COM)'
Dim lrow As Long
Dim Rng As Range, Clls As Range, BRng As Range
lrow = [e65432].End(xlUp).Row
For Each Rng In Range("A8:A" & lrow)
For Each Clls In Rng.Resize(1, 5)
If Clls = "" Then
If BRng Is Nothing Then
Set BRng = Clls
Else
Set BRng = Union(BRng, Clls)
End If
Exit For
End If
Next Clls, Rng
MsgBox BRng.Address '<<=='
End Sub