Hello,
I'm tracking truck deliveries. I have a dynamic data set. I want to consolidate the data and sum duplicate lines. Below is my example:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]CONCAT Code[/TD]
[TD]Delivery Date[/TD]
[TD]Customer[/TD]
[TD]Origin[/TD]
[TD]Destination[/TD]
[TD]Line #[/TD]
[TD]Carrier[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]7/6/2017[/TD]
[TD]Oil Co.
[/TD]
[TD]Houston[/TD]
[TD]Dallas[/TD]
[TD]1[/TD]
[TD]Energy Transport[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]7/6/2017[/TD]
[TD]Fuel Ltd.[/TD]
[TD]Oklahoma City[/TD]
[TD]Kansas City[/TD]
[TD]1[/TD]
[TD]Tanker Co.[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]7/6/2017[/TD]
[TD]Oil Co.[/TD]
[TD]Houston[/TD]
[TD]Dallas[/TD]
[TD]1[/TD]
[TD]Energy Transport[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]7/6/2017[/TD]
[TD]Oil Co.[/TD]
[TD]Houston[/TD]
[TD]Dallas[/TD]
[TD]1[/TD]
[TD]Fuel Delivery[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]7/6/2017[/TD]
[TD]Fuel Ltd.[/TD]
[TD]Oklahoma City[/TD]
[TD]Kansas City[/TD]
[TD]1[/TD]
[TD]Tanker Co.[/TD]
[/TR]
</tbody>[/TABLE]
I want to sum/count the "Line #" column for duplicate rows. I'm not too worried about deleting duplicate rows as once counted I can clear all duplicates in the data set. I do have a CONCAT code in Column A in order to make referencing easier. Any help is much appreciated!
I'm tracking truck deliveries. I have a dynamic data set. I want to consolidate the data and sum duplicate lines. Below is my example:
[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD]CONCAT Code[/TD]
[TD]Delivery Date[/TD]
[TD]Customer[/TD]
[TD]Origin[/TD]
[TD]Destination[/TD]
[TD]Line #[/TD]
[TD]Carrier[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]7/6/2017[/TD]
[TD]Oil Co.
[/TD]
[TD]Houston[/TD]
[TD]Dallas[/TD]
[TD]1[/TD]
[TD]Energy Transport[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]7/6/2017[/TD]
[TD]Fuel Ltd.[/TD]
[TD]Oklahoma City[/TD]
[TD]Kansas City[/TD]
[TD]1[/TD]
[TD]Tanker Co.[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]7/6/2017[/TD]
[TD]Oil Co.[/TD]
[TD]Houston[/TD]
[TD]Dallas[/TD]
[TD]1[/TD]
[TD]Energy Transport[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]7/6/2017[/TD]
[TD]Oil Co.[/TD]
[TD]Houston[/TD]
[TD]Dallas[/TD]
[TD]1[/TD]
[TD]Fuel Delivery[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]7/6/2017[/TD]
[TD]Fuel Ltd.[/TD]
[TD]Oklahoma City[/TD]
[TD]Kansas City[/TD]
[TD]1[/TD]
[TD]Tanker Co.[/TD]
[/TR]
</tbody>[/TABLE]
I want to sum/count the "Line #" column for duplicate rows. I'm not too worried about deleting duplicate rows as once counted I can clear all duplicates in the data set. I do have a CONCAT code in Column A in order to make referencing easier. Any help is much appreciated!