Forum Discussion

wcd1213's avatar
wcd1213
Frequent Visitor
3 years ago
Solved

Using ALLEXCEPT on calculated table

Hello All, I have a summarization table that pulls from two different tables in my report. I would like to get the average from other columns split up by name.  For example I would like to popu...
  • v-yanjiang-msft's avatar
    3 years ago

    Hi wcd1213 ,

    According to your description, here's my solution. Create a calculated column.

    Column =
    AVERAGEX (
        FILTER (
            'Calculated Table',
            'Calculated Table'[Name] = EARLIER ( 'Calculated Table'[Name] )
        ),
        [M1]
    )
    

     

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.