根据匹配结果从 wkbk 1 返回值到 wkbk 2

Returning value from wkbk 1 to wkbk 2 based on match result

我在下面评论了我的代码。我正在尝试遍历当前工作簿以搜索具有蓝色边框的单元格(我目前仅使用 Col A 进行测试)。

如果单元格有蓝色边框,那么我想在第二个工作簿中找到匹配的单元格(范围将始终为 A 列,第二个工作簿应始终具有匹配值)。

找到匹配项后,我想 return 将第一个工作簿(包括格式)中的值添加到找到匹配项的同一行中的第二个工作簿中,但在下一个可用列中。大多数时候它只是 B 列,但如果 B 列已满,则移至 C 列等)

匹配功能有效,return匹配正确的 idCella.value。

resultM 说找到了匹配项的正确行,但我不确定如何继续。

我知道我需要 .offset(0,1) 结果 M,但我遗漏了一些东西,我不确定是什么。

希望描述对您有所帮助,但如果您需要更多信息,请告诉我!

编辑:当我说找到完全匹配时,第二个工作簿上的值将不会有相同的蓝色 border/interior.color。我只想找到 cell.value 的匹配项。这么说可能是多余的,但我想我会补充一下。我还在学习:).


Dim testWS As Worksheet
Dim testRange As Range, rr2Dest As Range, idCella As Range
Dim alastRow2 As Long, resultM As Long

Set testWS = Workbooks("Test.xlsx").Worksheets("October")                                       'set the 2nd workbook as testWS
Set testRange = testWS.Columns(1)                                                               'searching only column A on testWS (2nd workbook)
alastRow2 = Worksheets("Reruns To Pull").Cells(Rows.Count, "A").End(xlUp).Row                     'find last row in column A that has data on current workbook


For Each idCella In Worksheets("Reruns To Pull").Range("A1:A" & alastRow2).Cells                'for each cell in Column A on current workbook (eventually I want to loop through Column A, D, G, J.  All will be variable ranges)

        If idCella.Borders.Color = RGB(0, 0, 192) Then                                                  'On current workbook, if cells in Col A borders.color = blue then

            resultM = Application.Match(idCella.Value, testRange, 0)                                        'find exact match on Test.xlsx (2nd workbook) and store in variable resultM
                                                                                                'look up value is the first cell found on current workbook that has blue border
                                                                                                'the range I want to search is column A of Test.xlsx
            Set rr2Dest.Value = resultM                                                                        'trying to set this result to a variable so I can offset the range location by 1 column (Result from current workbook goes to Column B on Tets.xlsx workbook)

            rr2Dest.Value = idCella.Value
            rr2Dest.Interior.Color = idCella.Interior.Color                                                 'everything I want to transfer into Column B on the 2nd workbook
            rr2Dest.Borders.Color = idCella.Borders.Color
            rr2Dest.Borders.Weight = idCella.Borders.Weight
        
        End If
    
Next idCella

End Sub```

从 rr2Dest 开始,使用 .End(xlToRight).Column 获取下一个空闲单元格,然后更新该单元格的值(以及颜色、重量等)。

https://docs.microsoft.com/en-us/office/vba/api/excel.range.end

Set rr2dest = testWS.Range("A" & CStr(resultM)).Offset(0, 1)

问题已解决。没有意识到宏没有跟踪它所在的工作簿。因此,一旦我指定并使用 CStr 与包含匹配项的变量结合使用。

只要加上 Schutt 的回答就可以了。