Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
3  
Welcome to stackoverflow. Have you already tried anything? People are more eager to help if you show some research effort before asking. Otherwise, you will appear as a help vampire – JMax Sep 29 '12 at 7:19
Yes, tried of course – Oleg Sep 29 '12 at 10:19
Are you trying to copy from Column G in workbook 1 to column J in workbook 2 or the opposite? Or maybe all in the same workbook? – nutsch Sep 29 '12 at 16:35
yes, just from 2 to 1, not in the same – Oleg Sep 29 '12 at 16:47

closed as not constructive by chris neilsen, brettdj, tereško, ronalchn, Carl Veazey Sep 30 '12 at 2:31

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

I find it best to use variables to reference all Excel objcets in code like this. It makes the code clearer, more robust and faster.

I am not entirely sure of your intent, so this may not be exactly what you need, but should be close enough for you to adjust to suit.

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
share|improve this answer
it seems it does copy the data, but data is not saved - column G in Book 1 remains empty. Could you help? – Oleg Sep 30 '12 at 2:55
I'm not sure what you mean. Does it get to the copy code (inner If)? FYI: I voted to close when there was no apparent effort in the OP. Now that there is I've voted to reopen. – chris neilsen Sep 30 '12 at 3:01
yes, it goes to the inner if – Oleg Sep 30 '12 at 8:55
Did you update the ws1 and ws2 lines to reference the right sheets? You will need to explain "data is not saved" – chris neilsen Sep 30 '12 at 9:59
Yes, I updated them, and in debug i saw that value of G is assigned to column J. But on the sheet of book 1 nothing is updated. Did it work for you? – Oleg Sep 30 '12 at 11:42
show 3 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.