Forum Discussion
Joak
9 years agoFrequent Visitor
Summarize issue
Hello, In a new table, I want to summarize a column; and then sum the values that are matching together : ExistingTable- Column A Values A 2...
- 9 years ago
Joak,
You may use GROUPBY Function as well. By the way, to help close this thread, accept the solution above. Your contribution is highly appreciated.
New table = GROUPBY ( ExistingTable, ExistingTable[Column A], "Values", SUMX ( CURRENTGROUP (), ExistingTable[Values] ) )
Joak
9 years agoFrequent Visitor
Thanks, you're right it works now thanks for the highlight and the article !
v-chuncz-msft
9 years agoCommunity Support
Joak,
You may use GROUPBY Function as well. By the way, to help close this thread, accept the solution above. Your contribution is highly appreciated.
New table =
GROUPBY (
ExistingTable,
ExistingTable[Column A],
"Values", SUMX ( CURRENTGROUP (), ExistingTable[Values] )
)