Hi All,
I have two tables in one worksheet which I want to clear the data, leaving one row below the headers, before importing/updating the data into the tables.
I'm using the following code, which works, but would like a more streamlined approached to achieving the same results.
Sub cleartable()
Dim Table1 As String, Table2 As String
Table1 = "ABCResults"
Table2 = "DEFResults"
With Range(Table1).ListObject
If Not .DataBodyRange Is Nothing Then
.DataBodyRange.Delete
End If
End With
With Range(Table2).ListObject
If Not .DataBodyRange Is Nothing Then
.DataBodyRange.Delete
End If
End With
End Sub
Any help appreciated
Cheers
Dean
Bookmarks