PowerShell TIP – ADD extra column to existing CSV
Sharing PowerShell TIP on how to ADD an extra column to existing CSV file. I have got this requirement many a times from Tableau or PowerBI team to add an extra column Date in existing CSV file. Step 1 à $data = Import-CSV c:\csvfile.csv Import CSV file into a variable $data Step 2 à $getdate…