Forum Discussion
_chris_
7 years agoHelper III
DAX question
Hi, i have a dataset with some columns whereas my problem is only with the following ones: projectid operation value 1 1 50 1 2 50 1 3 ...
- Anonymous7 years ago
I think that you can use this, if I understand this correctly
Remainder = SUMX( SUMMARIZE( Table, Table[project], Table[engineer], "Remainder",AVERAGE(Table[remainder(project)]) ), [Remainder] )
Anonymous
7 years agoNot applicable
Hi,
Instead of SUM you can use MAX, MIN, AVERAGE, etc. if the value is always the same for the project. I.e.
Function Name = MAX(Table[value]).
Regards,
Kristjan
- _chris_7 years agoHelper III
Thx, however, i am afraid my question was not good enough
project operation engineer remainder(project)
1 1 a 10
1 2 a 10
2 1 a 5
2 2 a 5
3 1 b 20
3 1 b 20
I want to see the remainng work per engineer in a diagram => a=10+5, b=20
Sorry for not having asked the right question in the fiirst go.
BR Chris
- Anonymous7 years agoNot applicable
I think that you can use this, if I understand this correctly
Remainder = SUMX( SUMMARIZE( Table, Table[project], Table[engineer], "Remainder",AVERAGE(Table[remainder(project)]) ), [Remainder] )