Edit: Apparently I accidentally submitted multiple comments while trying to add a line break. Here is what I was trying to say:I'm not sure I understand this question. You have a quote with 3 items in it:ABC ($50 - small)ABC ($100 - medium)ABC ($150 ...
There isn't a way to do that with CPQ tags/formulas, but you could achieve that with Python scripting:value = 'ab'
total = 0
for row in Product.GetContainerByName('Sample Container').Rows:
if row['Column B'] == value:
total += int(row['Co...