VBA-help <3

eekka

New Member
Joined
Apr 1, 2022
Messages
13
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
I am trying to connect two files (one to be used as template-source file) and second one as target file. Aim is to populate target file with data from source file that is named differently than in the source file. However this code doesn't work and I don't know where I have made a mistake. Any help is highly appreciated! Also it is important to note every single time when source data is changed, data should be pasted in the next row.

VBA Code:
Sub SearchAndFillData()
    Dim sourceWorkbook As Workbook
    Dim targetWorkbook As Workbook
    Dim sourceWorksheet As Worksheet
    Dim targetWorksheet As Worksheet
    Dim sourceRICColumn As Range
    Dim targetHeader As Range
    Dim sourceCell As Range
    Dim targetCell As Range

    Set sourceWorkbook = Workbooks.Open("C:\Path\To\x.xlsx")
    Set targetWorkbook = Workbooks.Open("C:\Path\To\ TEST-3.xlsx")

   
    Set sourceWorksheet = sourceWorkbook.Sheets("Sheet1")
    Set targetWorksheet = targetWorkbook.Sheets("Sheet1")

 
    Set sourceRICColumn = sourceWorksheet.Range("H2:H" & sourceWorksheet.Cells(sourceWorksheet.Rows.Count, "H").End(xlUp).Row)

   
    Set targetHeader = targetWorksheet.Range("A15:H15")

  
    For Each targetCell In targetHeader.Cells
 
        Set sourceCell = sourceRICColumn.Find(targetCell.Value, LookIn:=xlValues, lookat:=xlWhole)

       
        If Not sourceCell Is Nothing Then
           
            targetCell.Offset(1, 0).Value = "=CENT"
            Select Case targetCell.Value
                Case "RIC"
                    targetCell.Offset(1, 1).Value = sourceWorksheet.Range("H2").Value
                Case "OFFCL_CODE"
                    targetCell.Offset(1, 1).Value = sourceWorksheet.Range("B" & sourceCell.Row).Value
                Case "DISPLY_NAME"
                    targetCell.Offset(1, 2).Value = "#IGNORE"
                Case "MATUR_DATE"
                    targetCell.Offset(1, 3).Value = sourceWorksheet.Range("AP" & sourceCell.Row).Value
                Case "CURRENCY"
                    targetCell.Offset(1, 3).Value = sourceWorksheet.Range("Q" & sourceWorksheet.Range("Q2").Row).Value
                Case "BKGD_REF"
                    targetCell.Offset(1, 5).Value = sourceWorksheet.Range("B02").Value
                Case "OFF_CD_IND"
                    targetCell.Offset(1, 6).Value = "ISN"
                Case "OFFC_CODE2"
                    targetCell.Offset(1, 7).Value = sourceWorksheet.Range("I2").Value
            End Select
        End If
    Next targetCell


    MsgBox "Data copied successfully!", vbInformation
End Sub
 
Last edited by a moderator:

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
When posting vba code in the forum, please use the available code tags. It makes your code much easier to read/debug & copy. My signature block below has more details. I have added the tags for you this time. 😊
 
Upvote 0

Forum statistics

Threads
1,215,094
Messages
6,123,071
Members
449,092
Latest member
ipruravindra

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