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 ...
- 4 years ago
measure =
=IF(
SUMX(TableName,
FIND(
UPPER(TableName[Category]),
UPPER(TableName[Description])
,,0
)
) > 0,
SUM(TableName[Quantity]),
BLANK()
)
mh2587
Super User
4 years agomeasure =
=IF(
SUMX(TableName,
FIND(
UPPER(TableName[Category]),
UPPER(TableName[Description])
,,0
)
) > 0,
SUM(TableName[Quantity]),
BLANK()
)