Hi,
I've been successfully able to delete all excel tabs where there are 0 rows of data in it using the code below:
Sub DelMT()
Dim ws As Worksheet
Application.DisplayAlerts = False
For Each ws In ActiveWorkbook.Worksheets
If Application.CountA(ws.Cells) = 0 Then ws.Delete
Next ws...