I have a CSV file which lists items like this;
Item Quantity Part Reference Designator
1 || 3 || 2K || R1,R2,R3
2 || 2 || 10uF || C1,C2
I need to convert this to;
Item Quantity Part Reference Designator
1 || 1 || 2K || R1
|| 1 || 2K || R2
|| 1 || 2K || R3
2 || 1 || 10uF || C1
|| 1 || 10uF || C2
Is there a way to do this format conversion automatically. I have a List Of Materials that has 200 items on it. converting this manually would be a real pain!
