Updated the code as I have it now. Updated the code as I have it now. Updated the code as I have it now. Updated the code as I have it now. Updated the code as I have it now. Updated the code as I have it now. Updated the code as I have it now.
Sub Demo()
Const wb1Path As String = "\Full\Path\To\Book1\"
Const wb2Path As String = "\Full\Path\To\Book2\"
Const wb1Name As String = "Book 1.xls"
Const wb2Name As String = "Book 2.xls"
Dim wb1 As Workbook
Dim wb2 As Workbook
Dim ws1 As Worksheet
Dim ws2 As Worksheet
Dim rng1 As Range, cl1 As Range
Dim rng2 As Range, cl2 As Range
On Error Resume Next
Set wb1 = Application.Workbooks(wb1Name)
If Err.Number <> 0 Then
Err.Clear
Set wb1 = Application.Workbooks.Open(wb1Path & wb1Name)
If Err.Number <> 0 Then
Err.Clear
MsgBox "Could not open " & wb1Name
Exit Sub
End If
End If
Set wb2 = Application.Workbooks(wb2Name)
If Err.Number <> 0 Then
Err.Clear
Set wb2 = Application.Workbooks.Open(wb2Path & wb2Name)
If Err.Number <> 0 Then
Err.Clear
MsgBox "Could not open " & wb2Name
Exit Sub
End If
End If
On Error GoTo 0
' Get reference to worksheets
' --> Change to suit, or use index or code name
Set ws1 = wb1.Worksheets("Sheet2")
Set ws2 = wb2.Worksheets("Sheet1")
' Consider what to do if sheet is not found
' Get reference to data in ws1 column B
With ws1
Set rng1 = .Range(.[B2], .Cells(.Rows.Count, 2).End(xlUp))
End With
With ws2.Columns(2)
For Each cl1 In rng1.Cells
If cl1 <> "" Then
' Find in ws2 column B
Set cl2 = .Find(cl1, lookat:=xlWhole, LookIn:=xlValues)
If Not cl2 Is Nothing Then
' ws1 Cell in column G is set to value of cell in ws2 column J
cl1.Offset(0, 5) = cl2.Offset(0, 8)
'or use this instead
cl1.EntireRow.Cells(1, "G") = cl2.EntireRow.Cells(1, "J")
End If
End If
Next
End With
End Sub
Sub Demo()
Const wb1Path As String = "\Full\Path\To\Book1\"
Const wb2Path As String = "\Full\Path\To\Book2\"
Const wb1Name As String = "Book 1.xls"
Const wb2Name As String = "Book 2.xls"
Dim wb1 As Workbook
Dim wb2 As Workbook
Dim ws1 As Worksheet
Dim ws2 As Worksheet
Dim rng1 As Range, cl1 As Range
Dim rng2 As Range, cl2 As Range
On Error Resume Next
Set wb1 = Application.Workbooks(wb1Name)
If Err.Number <> 0 Then
Err.Clear
Set wb1 = Application.Workbooks.Open(wb1Path & wb1Name)
If Err.Number <> 0 Then
Err.Clear
MsgBox "Could not open " & wb1Name
Exit Sub
End If
End If
Set wb2 = Application.Workbooks(wb2Name)
If Err.Number <> 0 Then
Err.Clear
Set wb2 = Application.Workbooks.Open(wb2Path & wb2Name)
If Err.Number <> 0 Then
Err.Clear
MsgBox "Could not open " & wb2Name
Exit Sub
End If
End If
On Error GoTo 0
' Get reference to worksheets
' --> Change to suit, or use index or code name
Set ws1 = wb1.Worksheets(1)
Set ws2 = wb2.Worksheets(1)
' Consider what to do if sheet is not found
' Get reference to data in ws1 column B
With ws1
Set rng1 = .Range(.[B2], .Cells(.Rows.Count, 2).End(xlUp))
End With
With ws2.Columns(2)
For Each cl1 In rng1.Cells
If cl1 <> "" Then
' Find in ws2 column B
Set cl2 = .Find(cl1, lookat:=xlWhole, LookIn:=xlValues)
If Not cl2 Is Nothing Then
' ws1 Cell in column G is set to value of cell in ws2 column J
' cl1.Offset(0, 5) = cl2.Offset(0, 8)
'or use this instead
cl1.EntireRow.Cells(1, "G") = cl2.EntireRow.Cells(1, "J")
End If
End If
Next
End With
End Sub
Updated the code as I have it now.