Forum Discussion

RvdHeijden's avatar
RvdHeijden
Icon for Post Prodigy rankPost Prodigy
8 years ago
Solved

Combining 2 tables and Summarize

Goodday,   Im hoping someone can help me out on this one. I have a table where ALL the incidents are registered and categorized based on 'Soort Schade' and a few extra colums.   What i want to d...
  • v-ljerr-msft's avatar
    v-ljerr-msft
    8 years ago

    Hi RvdHeijden,

     

    In this scenario, you can adjust the formula like below. :smileyhappy:

    New Table = 
    SUMMARIZE (
        Data,
        Data[Infrastructuur],
        "Civiel (BIS)", COUNTROWS ( FILTER ( Data, Data[TeamType] = "Civiel (BIS)" ) ),
        "Civiel (Tuin)", COUNTROWS ( FILTER ( Data, Data[TeamType] = "Civiel (Tuin)" ) )
    )
    

     

    Regards