Hello!
Let’s say I have two events:
- “A” - with properties
- “name” - text type
- “price” - numeric type
- “B” - with properties
- “corp” - text type
- “value” - numeric type
With segmentation, I can sum the “price” property of “A” and group by the “name”, so I get the total “price” by “name”
I can do the same for “B”, sum the “value” property of “B” and group by “corp”, so I get the total “value” by “corp”.
However, I wonder if there is any way of combining these groups, as “name” and “corp” present common values.
So I want to get something like: (total “A - price” + “B - value”) by union of (“A - name” + “B - corp”), is it possible with Amplitude?
I kind of can do it with Formula = PROPSUM(A) + PROPSUM(B), however, this returns the totals by the common values of “name” and “corp”, but I would like to have the union of “name” and “corp”.