Forum Discussion

_chris_'s avatar
_chris_
Helper III
7 years ago
Solved

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   ...
  • Anonymous's avatar
    Anonymous
    7 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]
    )