Forum Discussion
flyingmada
6 years agoHelper I
Summing Values from one Table based on Unique ID
I would like to sum multiple values from one table based on a unique ID and create a new table with this information. Then, I need to create a calculated column with the new information. Example is b...
- 6 years ago
New Table = ADDCOLUMNS( SUMMARIZE( 'Old Awful Disgustingly Bad Table', [ID],[Date],[Fruit],[Field], "Amount",SUM([Amount]), "Remaining",SUM([Remaining]) ), "Amt/Rem",DIVIDE([Amount],[Remaining],0) )
FrankAT
6 years agoCommunity Champion
Hi flyingmada
I have a slightly different solution to Greg_Deckler :
New Table =
SUMMARIZE (
'Table',
'Table'[ID],
'Table'[Date],
'Table'[Fruit],
'Table'[Location],
"Amount", SUM ( 'Table'[Amount] ),
"Remaining", SUM ( 'Table'[Remaining] ),
"Amt/Rem", DIVIDE ( SUM ( 'Table'[Amount] ), SUM ( 'Table'[Remaining] ) )
)
With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)