CSV file field re-formating
CSV file field re-formating I have the following data in a CSV file. It has 8 columns. Here is the data: Device,Interface,Description,Average Inbound,Max Inbound,Average Outbound,Max Outbound Router,Cable0/0/0,,34.13M bps,88.57M bps,26.12M bps,80.39M bps Router,Cable0/0/0-upstream0,Node1,10.60M bps,16.07M bps,0 bps,0 bps Router,Cable0/0/0-upstream1,Node1,4.74M bps,13.71M bps,0 bps,0 bps Router,Cable0/0/0-upstream2,Node1,2.14M bps,10.65M bps,0 bps,0 bps Router,Cable0/0/0-upstream3,Node1,1.35M bps,8.33M bps,0 bps,0 bps Router,Cable0/0/1-upstream0,Node2,6.67M bps,7.80M bps,0 bps,0 bps Router,Cable0/0/1-upstream1,Node2,6.40M bps,8.22M bps,0 bps,0 bps Router,Cable0/0/1-upstream2,Node2,5.21M bps,8.06M bps,0 bps,0 bps Router,Cable0/0/1-upstream3,Node2,4.84M bps,7.80M bps,0 bps,0 bps I don't need to do anything with Device column or the Max Inbound or Max Outbound column. However, I need to be able to sum the Avg. Inbound and Avg. Outbound for each Node (Description column). Device Ma...