Matching Fields for import/export procedure.

Trenard

New Member
Joined
Jun 25, 2012
Messages
2
Hello,

My organization moves data between 2 different applications by exporting and importing csv files. I'll call the programs app1 and app2. app2 has an import file template that we use to match the fields from app1's export file. So I've been manually copying the columns from the export file from app1 into the appropriate columns of app2's template to "sync" the data between both applications.

I told a friend about how much of a pain this is becoming and he suggested I look online for a solution. Well here I am, and I'm wondering if it's possible to create a macro that would, at the click of a button, automatically move the columns from app1's export to app2's template file? There are other things that have to be done to the data before app2 will accept the template, but for now I'd just like to know if it's possible to create a macro that would move the columns from app1's export file into the appropriate columns in app2's import file template?

Please let me know if you need anymore information, or if there are more practical solutions for this problem.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Please provide a sample of the Columns from App1 and how You would like to see the columns re-arranged for App2. Depending on what these two samples look like, VBA should be able to hande the task as a Macro that would be easily accessable from the Excel Menu
 
Upvote 0
Here is a sample of the columns from app1's export.

app1export.jpg



So is it possible to copy the columns from above into the corresponding columns in the following image? For example, the "Last Name" column from app1 maps to "lname" column of app2's template and so forth.


app2template.jpg
 
Upvote 0
Thanks for the examples: The following code needs to be pasted into a VBA Module.

The Code expects the Source (Export) Data to be in a worksheet (Tab) called "Sheet1"). It also expects a second Spreadsheet to be present and named "Import File" (per your example)

Code:
Option Explicit
Function Process()
    Dim ColNo As Integer
    Dim I As Integer
    Dim arrSrcCol As Variant
    Dim arrDstCol As Variant
    
    Dim wb As Workbook
    Dim WsDst As Worksheet
    Dim WsSrc As Worksheet
    
    arrSrcCol = Array(1, 2, 3, 4, 5, 6)
    arrDstCol = Array(1, 2, 3, 4, 6, 8)
    
    Set wb = ThisWorkbook
    Set WsSrc = wb.Worksheets("Sheet1")
    Set WsDst = wb.Worksheets("Import File")
    WsDst.Cells.Clear
    
    For ColNo = 0 To UBound(arrSrcCol)
        WsSrc.Columns(arrSrcCol(ColNo)).Copy Destination:=WsDst.Cells(1, arrDstCol(ColNo))
    Next ColNo
    
    MsgBox "Complete", vbInformation
End Function

Edit the arrSrcCol and arrDstCol as appropiate to define the Source and Destination Columns
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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