Hello,
im stuck with power querys aggregation tool.
In a table like this:
A | B
1 | 10
1 | 20
1 | 20
1 | 30
2 | 10
2 | 20
2 | 30
3 | 10
i want to use the easy aggregation tool for getting the average from Colum B for all similar numbers in Colum A:
= Table.AggregateTableColumn(Zusammenführen, "NewColumn", {{"10", List.Average, "Anzahl von NewColumn.10"}})
Result should look like this
A | B | C
1 | 10 | 20
1 | 20 | 20
1 | 20 | 20
1 | 30 | 20
2 | 10 | 20
2 | 20 | 20
2 | 30 | 20
3 | 10 | 10
That works realy good! But on my file i have about 300.000 lines which leeds to a never ending loading process.
Does anyone know how i can do this faster?
In Excel theres a formular =Averageifs() which works much more faster. But i cant reproduce it in PowerQuery.
Any help is appreciated
im stuck with power querys aggregation tool.
In a table like this:
A | B
1 | 10
1 | 20
1 | 20
1 | 30
2 | 10
2 | 20
2 | 30
3 | 10
i want to use the easy aggregation tool for getting the average from Colum B for all similar numbers in Colum A:
= Table.AggregateTableColumn(Zusammenführen, "NewColumn", {{"10", List.Average, "Anzahl von NewColumn.10"}})
Result should look like this
A | B | C
1 | 10 | 20
1 | 20 | 20
1 | 20 | 20
1 | 30 | 20
2 | 10 | 20
2 | 20 | 20
2 | 30 | 20
3 | 10 | 10
That works realy good! But on my file i have about 300.000 lines which leeds to a never ending loading process.
Does anyone know how i can do this faster?
In Excel theres a formular =Averageifs() which works much more faster. But i cant reproduce it in PowerQuery.
Any help is appreciated