Forum Discussion
Anonymous
4 years agoNot applicable
Create summed table based on values from other rows
Hi guys, I have the following "master" table: Linked to a "slave" table: (ID in Sub Table is independent from Master Table, while "Secondary ID" is assigned by Mast...
lbendlin
4 years agoSuper User
Table = SUMMARIZECOLUMNS('Main Table'[ID], 'Sub Table 1'[Line],
"AverageWeight__lbs_ft_", CALCULATE(AVERAGE('Sub Table 1'[Weight (lbs/ft)]))
)Anonymous
4 years agoNot applicable
I tried this, but I am not able to change its contents with filters/slicers.. any other suggestions ?
- lbendlin4 years agoSuper User
A calculated table is immutable. It cannot be influenced by filters/slicers.