在VBA中使用FindString的输出

时间:2015-12-02 08:49:36

标签: excel vba excel-vba

我想再次请求你的帮助。使用一些VBA打开一个Inputbox,并在工作表X中找到一个特定值,然后将整行切成工作表Y.我已经完成了Inputbox / FindString-part,如图所示; this screenshot

我的问题非常简单;我如何使用Inputbox / Findstring找到的值?打算使用此值来创建剪切整行的代码,并删除剩余空间。

2 个答案:

答案 0 :(得分:0)

由于你已经有了范围变量 Rng ,我会这样做:

Rng.Cut
DestinationSheet.Range("destinationRange").select.Paste

答案 1 :(得分:0)

If Not Rng Is Nothing Then
    Rng.Copy
    Worksheet("Y").Range("A1").Paste
    Rng.EntireRow.Delete
Else
    MsgBox("Nothing found")
End If