For a basic report, you could use code like:
Code:
Dim lRow As Long, bEmpty As Boolean
lRow = ThisWorkbook.ActiveSheet.UsedRange.Cells.SpecialCells(xlCellTypeLastCell).Row
bEmpty = True
With Selection
If .Rows(1).Row < lRow Then
If ThisWorkbook.ActiveSheet.Range("A" & .Rows(1).Row & ":B" & .Rows(.Rows.Count).Row).SpecialCells(xlCellTypeBlanks).Count _
< .Rows.Count * 2 Then bEmpty = False
End If
If bEmpty = True Then
MsgBox "All rows in columns A & B in the selected rows are empty."
Else
MsgBox "At least one row in columns A & B iin the selected rows is not empty."
End If
End With