Hello everyone,
I've another challenge; two .CSV file one is named first.csv and the other second.csv. Column A of first.csv contains the account numbers and each account number is unique.
Second.csv column A has again the account number but can be repeated as it is the record of the activity of the accounts. Each account number has four columns of other information.
What I want to do is get the info on second.csv and add that 4 column of other info on the corresponding row of that particular account number in first.csv.
Sample first.csv
Acct_No Beg_Amt Name
R12345 420.23 MyName
R25122 100.00 YourName
Sample second.csv
Acct_No Trans_Amt Date Time
R12345 -60.23 02/08/2006 0800
R12345 +5.66 02/08/2006 0802
I want to get the two rows in second.csv and add that each row after the "Name" column in the first.csv.
Bookmarks