Question

Shuurgan
Shuurgan
CN
Shuurgan
Posted: Apr 9, 2025
Last activity: Apr 9, 2025
Last activity: 9 Apr 2025 2:27 EDT
I want to change the representation rules in the PEGA project, how do I do it?
In Pega, I have created five tabs: Year, Person, AmountA, AmountB, and AmountC. Each completed contract's year, person, and amounts are represented in a row. If I want to change the representation so that for the same year and person, AmountA, AmountB, and AmountC are summed up, how should I do it?
For example, the current data is:
- Row 1: {2021, PersonA, 100, 200, 300}
- Row 2: {2021, PersonA, 300, 200, 100}
- Row 3: {2021, PersonB, 100, 400, 700}
I want to modify it to:
- Row 1: {2021, PersonA, 400, 400, 400}
- Row 2: {2021, PersonB, 100, 400, 700}
How can I sum the amounts for the same year and person? Thank you. BAO