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...
Anonymous
4 years agoNot applicable
Need a calculated table because I need to use that averaged value for other calculations. For example, I will use that averaged value to multiply times other columns to get percentages, total material consumed, etc.
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)]))
)- Anonymous4 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.