Finding like data in other workbook

jddl

New Member
Joined
May 12, 2011
Messages
2
In one workbook i have a list of customers. In another I have a list using the same customer names in one column and a date assigned to them in another column. I would like to run a macro that when a customer in the first workbook is selected it would find the same customer in the second workbook and return the date associated with that customer.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
jddl:

You need to use the Workbook_SheetSelectionChange event. With the workbook "Book1" active (the one that only contains the customer names), press Alt+F11 to open the VBA Project window. Find the reference to VBAProject (Book1). Double-click on the ThisWorkbook icon. In the first box above the code window, select Workbook. In the second box, select SheetSelectionChange. Enter the following code:

Code:
Option Explicit

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)

Dim strSearchInfo As String
Dim strFoundInfo As Date

strSearchInfo = ActiveCell.Value
    
Application.ScreenUpdating = False

    If Not Intersect(Target, Range("A2:A10")) Is Nothing Then
        Workbooks("Book2").Activate
        Cells.Find(What:=strSearchInfo, LookIn:=xlValues, LookAt:= _
            xlPart, SearchOrder:=xlByRows, searchdirection:=xlNext, MatchCase:=False) _
                .Activate
        strFoundInfo = ActiveCell.Offset(0, 1).Value
        Workbooks("Book1").Activate
        Range(Target.Cells.Address).Offset(0, 1).Value = strFoundInfo
    End If

Application.ScreenUpdating = True

End Sub
/[code]

When you select any cell in Book1, the date from the corresponding cell in Book2 is copied to the adjacent cell in column B.

Rick
 
Upvote 0
Thanks for the response works great. Might be a stupid question but is there any way to get the date without having Book 2 open?
 
Upvote 0
jddl:

My understanding from other posts here is that it might be possible, but it is far easier to just open the other workbook. To make this painless, add the following code in the same place you entered the other code. This will automatically open Book2 when Book1 is opened and close it when Book1 is closed. It is assumed that both workbooks are in the same directory path. If they are not, you'll have to include the full path to Book2 where referenced in the Workbook_Open event code.

Code:
Option Explicit

Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Workbooks("Book2.xlsx").Close SaveChanges:=False
End Sub

Private Sub Workbook_Open()
    Workbooks.Open ("Book2.xlsx")
    Workbooks("Book1.xlsm").Activate
End Sub

If you want to be able to save changes made in Book2, set the "SaveChanges" parameter to True.

Rick
 
Upvote 0

Forum statistics

Threads
1,215,637
Messages
6,125,965
Members
449,276
Latest member
surendra75

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top