I am trying to deleted empty rows in a table across 3 different worksheets ("AAA", "CCC" & "EEE")that has table1, table2 & table3. I guess I could recycle a piece of code that I got from this forum. But how should I Code the "delete empty columns" part?
Sub Clean_Table_Click()
Dim TabList() As String
Dim i As Integer ' TbList index
Dim Tbl As ListObject ' loop object: Table
TabList = Split("AAA,BBB,CCC,DDD,EEE", ",")
For i = 0 To UBound(TabList)
On Error Resume Next
' an error will occur if sheet or table doesn't exist
Set Tbl = Worksheets(TabList(i)).ListObjects(1)
If Err = 0 Then
On Error GoTo 0 ' stop on further errors
'What should I code here?
End If
Next i
End Sub
Delete Empty/Blank Rows In Tables
Empty
""
.Blank