Question
list of dictionary in forEach with distinct
Hi Guys,
I have the following values in Appian:
{a!map(year: 2023, value: 15),
a!map(year: 2024, value: 20),
A!map(year: 2023, value: 100)}
and I want to get an output as a map where the values are summed by year.
For example: the years are aggregated and the value is the sum
{a!map(year: 2023, value: 115),
a!map(year: 2024, value: 20)}thanks
