I have 2 csv files that have data as per below that I want to import into excel using either PowerShell or a Visual Studio 13 code to merge the data from the imports into one excel sheet. or even to a SharePoint list.
CSV File 1 has
p d
p1 2016-05-11
p2 2017-06-30
p3 2019-07-31
p4 2015-08-31
p5 2015-05-30
csv file 2 has
t
t1
t2
t3
t4
t5
and then I want the output to a workbook to be (merged)
p t y
p1 t1 2016-05-11
p2 t2 2017-06-30
p3 t3 2019-07-31
p4 t4 2015-08-31
p5 t5 2015-05-30