Forum Discussion
jlarques
Helper V
4 years agoAdd records by category
Hi community,
I have another challenge. I want to add all records of the same category, but first, I need to find which category it belongs to in the description column. When I find it, then I have to add the quantity to the rigth category.
How can I do that?
Thanks for all your help and support.
José Luis
measure =
=IF(
SUMX(TableName,
FIND(
UPPER(TableName[Category]),
UPPER(TableName[Description])
,,0
)
) > 0,
SUM(TableName[Quantity]),
BLANK()
)