Forum Discussion
wcd1213
3 years agoFrequent Visitor
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...
- 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 _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yanjiang-msft
3 years agoCommunity Support
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.
wcd1213
3 years agoFrequent Visitor
Hi v-yanjiang-msft ,
Thank you for the reply.
I tested this expression and the column is not averaging by name. Is there something else I can add to the formula to acheive this?