Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Sum based on three distinct

Hi! I have a set of data that cannot be changed and it looks like vizualized below. I want to based on distinct value of the column "Project", the distinct value of the column "Department" and as ...
  • sturlaws's avatar
    sturlaws
    6 years ago

    It does not really help. 

     

    I guess you will be needing the SUMMARIZECOLUMNS-function:

    Avdelning =
    SUMMARIZECOLUMNS (
        Economy[Project];
        Economy[Department];
        "Something"; SUM ( Economy[Whatever] )
    )