When you filter a spreadsheet, you can find results that are similar to a condition. I have families of products that share a common 3 digits, but the rest of the model number is different. The 3 similar digits could be the first 3 digits, or it could be 3 digits starting with the 2nd digit. This spreadsheet has each complete model number on its own row. In that row is a number that represents a volume. I want to be able to sum the volume column if the model number contains the 3 digits.[TABLE="class: grid, width: 20"]
<tbody>[TR]
[TD]Model Number[/TD]
[TD]Volume[/TD]
[/TR]
[TR]
[TD]A hat[/TD]
[TD]5[/TD]
[/TR]
[TR]
[TD]B hat[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]A glove[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]hat[/TD]
[TD]8[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
In the above example, the total for "hat" = 5 + 1 + 8 = 14
I would type in a condition (family name) into another cell (D1) and the formula in D2.
<tbody>[TR]
[TD]Model Number[/TD]
[TD]Volume[/TD]
[/TR]
[TR]
[TD]A hat[/TD]
[TD]5[/TD]
[/TR]
[TR]
[TD]B hat[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]A glove[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]hat[/TD]
[TD]8[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
In the above example, the total for "hat" = 5 + 1 + 8 = 14
I would type in a condition (family name) into another cell (D1) and the formula in D2.