在下面添加一行,该行已由同一函数添加

时间:2018-05-18 09:15:25

标签: excel vba

我有一个简单的表格,我想创建一个函数,使用excel vba在表的末尾添加行。

问题是我不知道每次将新行添加到表格的末尾时。

1 个答案:

答案 0 :(得分:0)

使用表格的ListRows.Add方法。

With Worksheets("sheet1").ListObjects("Table1")
    .ListRows.Add AlwaysInsert:=True
End With