繁体   English   中英

VBA Excel搜索多列

[英]VBA excel search multiple columns

我正在尝试通过多个列搜索特定的值。 我下面的代码仅在D列中搜索。每当我更改它时,都会出现错误。 我想搜索D to M列。 谢谢

Do While (Range("D" & CStr(LSearchRow)).Value) > 0

 'If value in column D = LSearchValue, copy entire row to Sheet2
 If Range("D" & CStr(LSearchRow)).Value = LSearchValue Then

   'Select row in Sheet1 to copy
   Rows(CStr(LSearchRow) & ":" & CStr(LSearchRow)).Select
   Selection.Copy

   'Paste row into Sheet2 in next row
   Sheets("Sheet2").Select
   Rows(CStr(LCopyToRow) & ":" & CStr(LCopyToRow)).Select
   ActiveSheet.PasteSpecial

   'Move counter to next row
   LCopyToRow = LCopyToRow + 1

   'Go back to Sheet1 to continue searching
   Sheets("Sheet1").Select

 End If

 LSearchRow = LSearchRow + 1

Loop

我通过以下方式重新编写了您的代码,希望对您有所帮助。

Sub searchValue()

Dim LSearchValue As String
Dim LSearchRow As Integer
Dim LCopyToRow As Integer
Dim iColumn As Integer

'I'm looking for string = "5", change it to your value or pass it through procedure parameter
LSearchValue = "5"

LCopyToRow = 1

For iColumn = 4 To 13
    LSearchRow = 1
    While Sheets("Sheet1").Cells(LSearchRow, iColumn).Value > 0
        If Sheets("Sheet1").Cells(LSearchRow, iColumn).Value = LSearchValue Then
            'Select row in Sheet1 to copy
            Rows(LSearchRow).Select
            Selection.Copy

            'Paste row into Sheet2 in next row
            Sheets("Sheet2").Select
            Rows(LCopyToRow).Select
            ActiveSheet.PasteSpecial

            'Move counter to next row
            LCopyToRow = LCopyToRow + 1

            'Go back to Sheet1 to continue searching
            Sheets("Sheet1").Select
        End If
        LSearchRow = LSearchRow + 1
    Wend
Next iColumn

End Sub

这可能会让您入门。

Sub FindValues()
    Dim rw As Integer, cl As Range, LSearchValue As Long, LCopyToRow As Integer

    LCopyToRow = 1
    LSearchValue = 10

    For rw = 1 To 100

        For Each cl In Range("D" & rw & ":M" & rw)
            If cl = LSearchValue Then
                cl.EntireRow.Copy Destination:=Worksheets("Sheet2").Rows(LCopyToRow & ":" & LCopyToRow)
                LCopyToRow = LCopyToRow + 1
            End If
        Next cl

    Next rw
End Sub

注意:

  1. 不确定如何定义LSearchValue值。 在这里,我明确地做。
  2. 在这里,我遍历了100行(D1:D100)。 您可以更改以适合。
  3. 如果您需要预先检查一个大于0的值(如原始代码中所示),则添加一个If...语句
Sub searchValue()
  Dim LSearchValue As String`
  Dim LSearchRow As Integer
  Dim LCopyToRow As Integer
  Dim iColumn As Integer

  Sheet2.Cells.Clear
  Sheet1.Select

  On Error GoTo Err_Execute

  'user inputs value to be found
  LSearchValue = InputBox("Please enter a value to search for.", "Enter value")
  LCopyToRow = 1

  For iColumn = 4 To 13
    LSearchRow = 1
    While Sheets("Sheet1").Cells(LSearchRow, iColumn).Value > -1
      If Sheets("Sheet1").Cells(LSearchRow, iColumn).Value = LSearchValue Then
        'Select row in Sheet1 to copy
        Rows(LSearchRow).Select
        Selection.Copy

        'Paste row into Sheet2 in next row
        Sheets("Sheet2").Select

        Rows(CStr(LCopyToRow) & ":" & CStr(LCopyToRow)).Select
        ActiveSheet.Paste

        'Move counter to next row
        LCopyToRow = LCopyToRow + 1

        'Go back to Sheet1 to continue searching
        Sheets("Sheet1").Select
      End If

      LSearchRow = LSearchRow + 1
    Wend
  Next iColumn

  'Position on cell A3
  Application.CutCopyMode = False
  Range("A3").Select

  MsgBox "All matching data has been copied."
  Exit Sub

Err_Execute:
   MsgBox "An error occurred."
End Sub

我试图实现以上代码。 我所有的代码都遇到了两个问题。

  1. While Sheets("Sheet1").Cells(LSearchRow, iColumn).Value > -1代替0起作用。 数据将被复制但由于粘贴重复项而发生错误。

  2. 当我调试时,这行代码LSearchRow = LSearchRow + 1发生错误

我无法发表评论,因此我将其添加为答案。

虽然Sheets(“ Sheet1”)。Cells(LSearchRow,iColumn).Value> -1代替0起作用。数据将被复制,但是由于粘贴重复项而发生错误。

确实没有用。 Sheets("Sheet1").Cells(LSearchRow, iColumn).Value > -1对所有行都返回true,这就是为什么在行LSearchRow = LSearchRow + 1出错(实际上是“溢出”错误)的原因。

我不知道你为什么要这样做。 如果这对于空单元格,请尝试使用Sheets("Sheet1").Cells(LSearchRow, iColumn).Value <> ""代替吗?

或代替While ... Wend您可以执行以下操作:

Dim i as Long

For i=1 to Sheet("Sheet1").Cells(1,iColumn).End(xlDown).Row 'looping from first cell in column 'iColumn' to last not empty cell
    ...
Next i
Sub FindValues()
   Dim LSearchRow As Integer
   Dim rw As Integer, cl As Range, LSearchValue As Long, LCopyToRow As Integer

   Sheet2.Cells.Clear
   Sheet1.Select

   'On Error GoTo Err_Execute
   'this for the end user to input the required A/C to be searched
    LSearchValue = InputBox("Please enter a value to search for.", "Enter value")
    LCopyToRow = 2

    For rw = 1 To 1555
        For Each cl In Range("D" & rw & ":M" & rw)
            If cl = LSearchValue Then
                cl.EntireRow.Copy

                'Destination:=Worksheets("Sheet2")
                '.Rows(LCopyToRow & ":" & LCopyToRow)

                Sheets("Sheet2").Select
                Rows(LCopyToRow & ":" & LCopyToRow).Select

                'Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats
                Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
                    xlNone, SkipBlanks:=False, Transpose:=False

                'Move counter to next row
                LCopyToRow = LCopyToRow + 1

                'Go back to Sheet1 to continue searching
                Sheets("Sheet1").Select
            End If

            'LSearchRow = LSearchRow + 1 
        Next cl
    Next rw

    'Position on cell A3
    'Application.CutCopyMode = False
    'Selection.Copy

    Sheets("Sheet2").Select
    Cells.Select

    Selection.PasteSpecial Paste:=xlPasteFormats, Operation:=xlNone, _
       SkipBlanks:=False, Transpose:=False

    Application.CutCopyMode = False
    Sheet2.Select

    MsgBox "All matching data has been copied."
    Exit Sub

'Err_Execute:
   MsgBox "An error occurred."

End Sub

使用Find()方法将是查找匹配值的最有效方法。

Sub Find_Value()
Dim lFirstMatch As Long
Dim rngSearch As Range
Dim rngNextRow As Range
Dim sSearchValue As String

    'Set the Search Value
    sSearchValue = "Something"

    'Find the Search Value
    Set rngSearch = Sheets("Sheet1").Range("D:M").Find(What:=sSearchValue, LookAt:=xlWhole, SearchOrder:=xlByRows)
    If Not rngSearch Is Nothing Then

        'If found preserve the first row
        lFirstMatch = rngSearch.Row
        Do

            'Find the last used row on Sheet2
            Set rngNextRow = Sheets("Sheet2").Cells.Find(What:="*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious)
            If Not rngNextRow Is Nothing Then

                'If a last used row is found, copy the row from Sheet1 to the next available row on Sheet2
                rngSearch.EntireRow.Copy Destination:=rngNextRow.Offset(1, 0).EntireRow
            Else

                'If a last used row is not found, copy the row from Sheet1 to the first row on Sheet2
                rngSearch.EntireRow.Copy Destination:=Sheets("Sheet2").Rows(1)
            End If

            'Find the next value on Sheet1
            Set rngSearch = Sheets("Sheet1").Range("D:M").Find(What:=sSearchValue, LookAt:=xlWhole, After:=rngSearch, SearchOrder:=xlByRows)

        'Stop looking for the Search Value once you have come full circle back to the first value
        Loop While Not rngSearch.Row = lFirstMatch
    End If

End Sub

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM