What would be simplest way to check whether a worksheet is empty/blankin an excel workbook.
Sub CheckMT()Dim int1 As Integerint1 = Application.CountA(ActiveSheet.UsedRange)End Sub