VBA Excel中寻找价值2度动态范围之间

问题描述 投票:0回答:2

在“myRange”每个小区我要检查的范围Sheet 2中的值,并且如果Sheet 2中的值在myRange找到然后对相应行我希望把从列A中的值到E栏

既然这样,我只能期望从Sheet2的(“A1”)的单个值。当试图扩展这个范围我得到的错误。

有没有一种方法,使在Sheet2的动态范围,好吗?

Sub Find_values()

    Dim myRange As Range
    Dim Cell As Range
    Dim LR As Long

    LR = Sheets(1).Range("B" & Rows.Count).End(xlUp).Row
    Set myRange = Sheets(1).Range("B1:B" & LR)

    For Each Cell In myRange

    If Cell.Value = Sheets(2).Range("A1").Value Then Cell.Offset(0, 3) = Cell.Offset(0, -1).Value


    Next Cell

End Sub

enter image description here

enter image description here

enter image description here

enter image description here

excel vba
2个回答
0
投票

正如其他人的建议,你可以简单地窝双方各持两份环。

Sub Find_values()

    Dim myRange1 As Range
    Dim myRange2 As Range
    Dim Cell1 As Range
    Dim Cell2 as Range

    Set myRange1 = Sheets(1).Range(range("B1"),range("B1").end(xlDown))
    Set myRange2 = Sheets(2).Range(range("A1"),range("A1").end(xlDown)) 'This range is also dynamic and will adapt to teh number of entries you ahve in Sheet2

    For Each Cell1 In myRange1
    For Each Cell2 In myRange2

    If Cell1.Value2 = Cell2.Value2 Then
        Cell1.Offset(0, 3) = Cell1.Offset(0, -1).Value2
        Exit for 'Save you some useless processing time since the entry has already been found
    end If

    Next Cell2
    Next Cell1

End Sub

注意:我已经重新写你的范围statment更清洁。请注意,我也改变了你的.value的语句转换成.value2,这取决于在某些情况下,您将电池中使用的数据类型更好地工作。


0
投票

按照此步骤:

在Sheet1中的数据转换成结构化的Excel表格:

1 - 选择从规模的小区范围内的串连最后一个单元格

2 - 点击功能区“主页” | “样式” | “格式表” |

3-勾选“我的表有标题”对话框(其标记)

4-记下的表的名称(在选择一个单元格的表格里,看在“表格工具”功能区|“表名”

5-重复前面的步骤为Sheet 2中的数据

6-下面的代码添加到VBA模块:

Sub LookupValues()

    ' Define object variables
    Dim sourceSheet As Worksheet
    Dim sourceTable As ListObject
    Dim sourceCell As Range

    Dim dataSheet As Worksheet
    Dim dataTable As ListObject



    ' Define other variables
    Dim sourceSheetName As String
    Dim sourceTableName As String

    Dim dataSheetName As String
    Dim dataTableName As String


    ' >>>>Customize this<<<<<
    sourceSheetName = "Sheet2"
    sourceTableName = "Table2"
    dataSheetName = "Sheet1"
    dataTableName = "Table1"

    ' Initialize worksheets
    Set sourceSheet = ThisWorkbook.Worksheets(sourceSheetName)
    Set dataSheet = ThisWorkbook.Worksheets(dataSheetName)

    ' Initialize source table
    Set sourceTable = sourceSheet.ListObjects(sourceTableName)
    Set dataTable = dataSheet.ListObjects(dataTableName)

    ' Loop through every cell in sourceSheet
    For Each sourceCell In sourceTable.DataBodyRange.Columns(1).Cells
        ' >>>>Customize this<<<<<
        ' In the following code:
        ' Offset(0, 4) -> 4 stand for 4 columns after column A
        ' Index(dataTable.DataBodyRange.Columns(1) -> 1 stands to return the first column of the data table
        ' Match(sourceCell.Value, dataTable.DataBodyRange.Columns(2) -> 2 stands to look in the second column of the data table
        If Not IsError(Application.Match(sourceCell.Value, dataTable.DataBodyRange.Columns(2), 0)) Then
            sourceCell.Offset(0, 4).Value = Application.Index(dataTable.DataBodyRange.Columns(1), Application.Match(sourceCell.Value, dataTable.DataBodyRange.Columns(2), 0))
        End If

    Next sourceCell


End Sub

6-自定义代码,以满足您的需求

7测试它,让我们知道,如果它希望它帮助!

© www.soinside.com 2019 - 2024. All rights reserved.