When I create the following
I get a syntax error with the second argument, the first works fine![]()
Public Sub clear_table_row(tblname As String, rw As Integer) Dim tbl As ListObject Dim r1 As Range Set tbl = ActiveSheet.ListObjects(tblname) Set r1 = tbl.ListColumns(rw).DataBodyRange r1.ClearContents End Sub and then Public Sub clear_row() clear_table_row ("accom_exist",2) clear_table_row ("accom_new",2) End Sub
Does anybody Know what im doing wrong ??
Bookmarks