[TABLE="width: 500"]
<tbody>[TR]
[TD]Fruit
[/TD]
[TD]#
[/TD]
[TD]Total
[/TD]
[/TR]
[TR]
[TD]Apple
[/TD]
[TD]2
[/TD]
[TD]8
[/TD]
[/TR]
[TR]
[TD]Apple
[/TD]
[TD]6
[/TD]
[TD]NO VALUE
[/TD]
[/TR]
[TR]
[TD]Orange
[/TD]
[TD]7
[/TD]
[TD]7
[/TD]
[/TR]
[TR]
[TD]Apple
[/TD]
[TD]9
[/TD]
[TD]9
[/TD]
[/TR]
[TR]
[TD]Banana
[/TD]
[TD]1
[/TD]
[TD]15
[/TD]
[/TR]
[TR]
[TD]Banana<strike></strike>
[/TD]
[TD]10
[/TD]
[TD]NO VALUE<strike></strike>
[/TD]
[/TR]
[TR]
[TD]Banana<strike></strike>
[/TD]
[TD]4
[/TD]
[TD]NO VALUE<strike></strike>
[/TD]
[/TR]
</tbody>[/TABLE]
How do I consolidate a column but only if they're in consecutive order? I can't just use the consolidate feature because that will total all of the apples but I only want to total them if they come right in a row. Thanks!
<tbody>[TR]
[TD]Fruit
[/TD]
[TD]#
[/TD]
[TD]Total
[/TD]
[/TR]
[TR]
[TD]Apple
[/TD]
[TD]2
[/TD]
[TD]8
[/TD]
[/TR]
[TR]
[TD]Apple
[/TD]
[TD]6
[/TD]
[TD]NO VALUE
[/TD]
[/TR]
[TR]
[TD]Orange
[/TD]
[TD]7
[/TD]
[TD]7
[/TD]
[/TR]
[TR]
[TD]Apple
[/TD]
[TD]9
[/TD]
[TD]9
[/TD]
[/TR]
[TR]
[TD]Banana
[/TD]
[TD]1
[/TD]
[TD]15
[/TD]
[/TR]
[TR]
[TD]Banana<strike></strike>
[/TD]
[TD]10
[/TD]
[TD]NO VALUE<strike></strike>
[/TD]
[/TR]
[TR]
[TD]Banana<strike></strike>
[/TD]
[TD]4
[/TD]
[TD]NO VALUE<strike></strike>
[/TD]
[/TR]
</tbody>[/TABLE]
How do I consolidate a column but only if they're in consecutive order? I can't just use the consolidate feature because that will total all of the apples but I only want to total them if they come right in a row. Thanks!