I seen this kind of posts but couldn't able to get exact working module. I hope someone can help me on this.
I have two .CSV files
file1.csv
"ID","status","Type"
"mzx1","Active","A"
"mzx2","Active","B"
"mzx3","Active","C"
file2.csv
"ID","User Company","Date"
"mzx1","MS","2020-01-01"
"mzx3","Sam","020-01-01"
"mzx5","new","020-01-03"
I need to compare the ID value in file2.csv file if it matches then add a column with value "User Company"
file3.csv
"ID","status","Type","Company"
"mzx1","Active","A","MS"
"mzx2","Active","B","Not found"
"mzx3","Active","C","Sam"
Now if you see the example of file3.csv file which has all the rows of file1.csv file and new column "Company". As well for no ID match found it should draft "Not found".