Forum Discussion
Join values to single row
- 4 years ago
Try a calculated table:
ADDCOLUMNS (
SUMMARIZE (
TableName[NUM ID],TableName[Type]
),"Col1", CALCULATE ( SUM ( TableName[1] ) ),
"Col2", CALCULATE ( SUM ( TableName[2] )),
"Col1+2", CALCULATE ( SUM ( TableName[1+2] ))
)
Alternatively you could use group by in power query.
Try a calculated table:
ADDCOLUMNS (
SUMMARIZE (
TableName[NUM ID],
TableName[Type]
),
"Col1", CALCULATE ( SUM ( TableName[1] ) ),
"Col2", CALCULATE ( SUM ( TableName[2] )),
"Col1+2", CALCULATE ( SUM ( TableName[1+2] ))
)
Alternatively you could use group by in power query.
- PVVBl004 years agoHelper III
Everything works perfectly for me, thank you very much :)), but in the column of 1 + 2, the value of the sum brings me wrong, you have any idea why it should be?