Forum Discussion
zimmermanaric
9 years agoHelper I
Repeat Information down column
I have the following developed (fake numbers of course to protect the innocent :smileyhappy:). All of the data is in the same table. I am struggling with creating a formula that will ignore the labor...
- 9 years ago
Generally, you use an ALLEXCEPT filter in a CALCULATE to override the context of a measure within a visualization.
- 8 years ago
Hi zimmermanaric,
As Greg_Deckler suggested, you can create a measure:
Column 2 = CALCULATE(SUM(Table1[Labor Amount]),ALLEXCEPT(Table1,'Table1'[Parent Location]))
Also you can create a calculated column use:
Column = CALCULATE(SUM('Table1'[Labor Amount]),FILTER('Table1','Table1'[Parent Location]=EARLIER(Table1[Parent Location])))
Best Regards,
QiuyunYu
Greg_Deckler
9 years agoCommunity Champion
Generally, you use an ALLEXCEPT filter in a CALCULATE to override the context of a measure within a visualization.