Hi
Yes it would seem this doesn't work with multi cell ranges.
I would suggest a little function (especialy if you use this more than once in your code) thus
Code:
Function RangeIsBlank(ByRef ThisRange As Range) As Boolean
Dim cel As Range
RangeIsBlank = True
For Each cel In ThisRange
If cel <> "" Then RangeIsBlank = False
Next cel
End Function
Used like this
Code:
Sub test()
If RangeIsBlank(Range("C13:N13")) Then
MsgBox "Range is Blank"
'etc
'etc
End If
End Sub
HTH
MTB