Combine multiple rows when they have the same word

Can anyone help me how to combine multiple rows and sum its value when they have the same words?
Example:

User IDCategory IDCategoryValue
0001C001Agent1
0002C002Client2
0001C003Agent4


Result:

User IDCategory IDCategoryValue
0001C001Agent5
0002C002Client2
0 4 145
4 REPLIES 4

Thank @Joseph_Seddik I appreciate it.

Can anyone give me and example?

Sure. There is more than one way, the most suitable of which depends on your exact case. So you might want to describe your need in a bit more detail.

A general, might not be so efficient answer, is to use something like this:

SUM( SELECT(table[Value], AND(
  [User ID] = [_ThisRow].[User ID],
  [Category ID] = [_ThisRow].[Category ID]
)))

Top Labels in this Space