Forum Discussion
BobbyDollar
7 years agoFrequent Visitor
Calculate with filter on multiple tables
Hi Novice asking again beginner questions … Thanks in advance for your help There are 2 tables, TableResult and TableTarget TableResult Region Profit_Center Revenue Region_Target ...
- 7 years ago
Hi BobbyDollar
Region_Target = CALCULATE ( SUM ( TableTarget[Revenue] ); FILTER ( TableTarget; TableTarget[Region] = TableResult[Region] && TableTarget[Profit_Center] = TableResult[Profit_Center] ) )Please mark the question solved when we get to the solution and consider kudoing if posts are helpful.
Cheers

AlB
Community Champion
7 years agoHi BobbyDollar
Region_Target =
CALCULATE (
SUM ( TableTarget[Revenue] );
FILTER (
TableTarget;
TableTarget[Region] = TableResult[Region]
&& TableTarget[Profit_Center] = TableResult[Profit_Center]
)
)
Please mark the question solved when we get to the solution and consider kudoing if posts are helpful.
Cheers ![]()