codice:
Sub vuoto()
    If WorksheetFunction.CountA(Cells) = 0 Then
         MsgBox "foglio vuoto"
    Else
        MsgBox "contiene qualcosa"
    End If
End Sub