Append rows into different csv files based on column value

number15

New Member
Joined
May 7, 2022
Messages
18
Office Version
  1. 365
Platform
  1. Windows
Hi,
I'm looking for a solution for this case scenario.

I have an excel file with in a column some names and some csv files, named with same names.
I'm trying a way to extract the rows from the excel file and append them to the proper csv file.

For example, Excel file:

Name,Col2,Col3,Col4
Pippo,x,x,x
Pippo,y,y,y
Pippo,z,z,z
Pluto,a,f,b
Pluto,a,g,b

And following csv files:
Pippo.csv
Col2,Col3,Col4
a,b,f
x,b,v

Pluto.csv
Col2,Col3,Col4
y,s,b
y,s,g

Result should be
Pippo.csv
Col2,Col3,Col4
a,b,f
x,b,v
x,x,x
y,y,y
z,z,z

Pluto.csv
Col2,Col3,Col4
y,s,b
y,s,g
a,f,b
a,g,b

My knowledge of VBA is 0, but I can try to work on it if it's possible to solve this case.
I'm fine also to buy an add-in if exists.

Thanks
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Hi and welcome to MrExcel!

For example, Excel file:
If your data is as follows:
varios 11may2022.xlsm
ABCD
1NameCol2Col3Col4
2Pippoxxx
3Pippoyyy
4Pippozzz
5Plutoafb
6Plutoagb
Sheet1



Put the macro in the excel file. Save the excel in the same folder where the csv files are.
VBA Code:
Sub Append_rows_into_csv_files()
  Dim myPath As String, myFile As String, cad As String
  Dim i As Long, j As Long, k As Long, n As Long, m As Long
  Dim a As Variant, b As Variant, ky As Variant
  Dim dic As Object
  
  Set dic = CreateObject("Scripting.Dictionary")
  a = Range("A2:D" & Range("A" & Rows.Count).End(3).Row).Value
  ReDim b(1 To UBound(a, 1), 1 To UBound(a, 1))
  
  For i = 1 To UBound(a)
    If Not dic.exists(a(i, 1)) Then
      n = n + 1
      dic(a(i, 1)) = n & "|" & 1
    End If
    n = Split(dic(a(i, 1)), "|")(0)
    m = Split(dic(a(i, 1)), "|")(1)
    b(n, m) = i
    m = m + 1
    dic(a(i, 1)) = n & "|" & m
  Next
  
  myPath = ThisWorkbook.Path & "\"
  For Each ky In dic.keys
    n = Split(dic(ky), "|")(0)
    myFile = myPath & ky & ".csv"
    If Dir(myFile) = "" Then
      Open myFile For Output As #1
    Else
      Open myFile For Append As #1
    End If
    For k = 1 To UBound(b, 2)
      If b(n, k) = "" Then Exit For
      i = b(n, k)         'get row
      cad = ""
      For j = 1 To UBound(a, 2)
        cad = cad & a(i, j) & ","
      Next
      If cad <> "" Then
        cad = Left(cad, Len(cad) - 1)
        Print #1, cad
      End If
    Next
    Close #1
  Next
End Sub

-----
If the csv file exists, then add the records at the end, if the csv file does not exist, then the macro creates a new csv file with the data from the columns.
-----

HOW TO INSTALL MACROs
------------------------------------
If you are new to macros, they are easy to install and use. To install it, simply press ALT+F11 to go into the VB editor and, once there, click Insert/Module on its menu bar, then copy/paste the above code into the code window that just opened up. That's it.... you are done. To use the macro, go back to the worksheet with your data on it and press ALT+F8, select the macro name (Append_rows_into_csv_files) from the list that appears and click the Run button. The macro will execute and perform the action(s) you asked for. If you will need to do this again in this same workbook, and if you are using XL2007 or above, make sure you save your file as an "Excel Macro-Enabled Workbook (*.xlsm) and answer the "do you want to enable macros" question as "Yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.
 
Upvote 0
Hi Dante, thank you so much for the script.
I'm looking at it and try to understand what it does in every part.

How does it append the rows to the file? I mean, the columns needs to be same number and same order or it's based on the name of the columns or based on position?

Thanks
 
Upvote 0
How does it append the rows to the file?
With this instruction
Open myFile For Append As #1

I mean, the columns needs to be same number and same order or it's based on the name of the columns or based on position?
It always adds 4 columns and now that I see it, you need to add 3 columns (B, C and D).

Change this line:
For j = 1 To UBound(a, 2)

to this:
For j = 2 To UBound(a, 2)
 
Upvote 0
I can have edge cases where the number and the position of the columns in the starting file are different from the ones in the csv files.
So i was checking if I need to have all the same columns in all the files or it works in a different way (like maybe using column header).

It's just to understand: it's not a big deal to create a macro to add/sort the columns in the original xlsx file.
 
Upvote 0
I can have edge cases where the number and the position of the columns in the starting file are different from the ones in the csv files.
So i was checking if I need to have all the same columns in all the files or it works in a different way (like maybe using column header).

It's just to understand: it's not a big deal to create a macro to add/sort the columns in the original xlsx file.
In your initial examples there is none of that. The macro works to add 3 data to the end of the file.
 
Upvote 0
Ok perfect. I'll edit it to append all the columns.

Everything seems working properly, just a question: how can I change it to avoid to create the file if the csv is missing?

I've trying in this way
VBA Code:
If Dir(myFile) <> "" Then
      Open myFile For Append As #1
    End If
but it gives me error here:
VBA Code:
Print #1, cad

Any suggestion?
Thanks
 
Upvote 0
how can I change it to avoid to create the file if the csv is missing?

Try this:
VBA Code:
Sub Append_rows_into_csv_files()
  Dim myPath As String, myFile As String, cad As String
  Dim i As Long, j As Long, k As Long, n As Long, m As Long
  Dim a As Variant, b As Variant, ky As Variant
  Dim dic As Object
  
  Set dic = CreateObject("Scripting.Dictionary")
  a = Range("A2:D" & Range("A" & Rows.Count).End(3).Row).Value
  ReDim b(1 To UBound(a, 1), 1 To UBound(a, 1))
  
  For i = 1 To UBound(a)
    If Not dic.exists(a(i, 1)) Then
      n = n + 1
      dic(a(i, 1)) = n & "|" & 1
    End If
    n = Split(dic(a(i, 1)), "|")(0)
    m = Split(dic(a(i, 1)), "|")(1)
    b(n, m) = i
    m = m + 1
    dic(a(i, 1)) = n & "|" & m
  Next
  
  myPath = ThisWorkbook.Path & "\"
  For Each ky In dic.keys
    n = Split(dic(ky), "|")(0)
    myFile = myPath & ky & ".csv"
    If Dir(myFile) <> "" Then
      Open myFile For Append As #1
      For k = 1 To UBound(b, 2)
        If b(n, k) = "" Then Exit For
        i = b(n, k)         'get row
        cad = ""
        For j = 2 To UBound(a, 2)
          cad = cad & a(i, j) & ","
        Next
        If cad <> "" Then
          cad = Left(cad, Len(cad) - 1)
          Print #1, cad
        End If
      Next
      Close #1
    End If
  Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,246
Messages
6,170,988
Members
452,373
Latest member
TimReeks

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