I have a requirement to convert a .csv file containing data like this:
100,3
101,2
102,4
to a csv. file containing this:
100
100
100
101
101
102
102
102
102
I've written a macro in Excel that does this but the requirement is to carry this out against ~1 million records which crashes Excel.
Does anybody have a Powershell solution for this?