插入另一个工作表

时间:2015-10-30 17:28:13

标签: excel vba

好的,所以我找到了一些对我有用的vba代码除了我无法弄清楚如何将它放入第2行

以下是我找到使用的代码的链接:Excel VBA code to select cells that contain a certain text string in one workbook, and then copy and paste these cells into a new workbook

我稍微改变了一部分内容,使其他搜索进入相同ws的新列:

If InStr(v, "AE AST") > 0 Then
    r.Copy w2.Cells(K, 3)
    K = K + 1
End If
If InStr(v, "AE CST") > 0 Then
    r.Copy w2.Cells(K, 5)
    K = K + 1
End If

但我如何才能进入新的行?我希望它填充第2行,因此它不会覆盖我的列标题。我尝试添加和替换所有地方的数字来弄明白,我努力工作,因为我还在学习vba代码。

谢谢!!

0 个答案:

没有答案