Hi,
Does prioritization work in Summarize tool? I have 4 parameters to consider to sum a value; I tried this order - "group by" A, B, D, "max" C, "sum" value. I thought it worked fine but when I used the same logic to thousands of data, apparently "max" C is not considered. The values end up getting summed as long as A, B, D are satisfied.
| same | same | different | same | | sumif |
| A | B | C | D | Value | Expectation |
| aa | bb | cc | dddd | 10 | 10 |
| a | bb | cc | d | 10 | 10 |
| aaa | b | c | d | 10 | 10 |
| aa | bb | ccc | dd | 10 | 20 |
| aa | bb | cc | dd | 10 | 20 |
| aaa | bbb | cc | ddd | 10 | 20 |
| aaa | bbb | ccc | ddd | 10 | 20 |
| aa | bb | cc | ddd | 10 | 10 |
Appreciate your help.
Thank you.