Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
Solved! Go to Solution.
measure =
=IF(
SUMX(TableName,
FIND(
UPPER(TableName[Category]),
UPPER(TableName[Description])
,,0
)
) > 0,
SUM(TableName[Quantity]),
BLANK()
)
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
measure =
=IF(
SUMX(TableName,
FIND(
UPPER(TableName[Category]),
UPPER(TableName[Description])
,,0
)
) > 0,
SUM(TableName[Quantity]),
BLANK()
)
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |