Forum Discussion
Calculated column between two tables
- 8 years ago
Hi barlevitzky
You ought to use "Calculate". Calculate transforms ROW CONTEXT into FILTER CONTEXT
In Column2 use (Modify the table name according to your situation)
=calculate(Sum(RevenueTable[Revenue])
In Column3 use (Modify the table name according to your situation)
=calculate(Sum(CostTable[Cost])
barlevitzky,
Do you have 1:1 relationship between the two tables? If so, create column4 using the DAX below. If not, please share sample data of the two tables and tell us which table have duplicate dates in Date column.
Column4 = Revenue[Column2] - RELATED(Costs[Column3])
Regards,
Lydia
- barlevitzky8 years agoHelper I
Hi, Thanks for your reply.
The connection between the tables is many to many and made by a third Table.
When I am typing "Related.." PowerBI suggests me only columns that exist is this third table. (I need a column from the first table).
- Zubair_Muhammad8 years agoCommunity Champion
Hi barlevitzky
You ought to use "Calculate". Calculate transforms ROW CONTEXT into FILTER CONTEXT
In Column2 use (Modify the table name according to your situation)
=calculate(Sum(RevenueTable[Revenue])
In Column3 use (Modify the table name according to your situation)
=calculate(Sum(CostTable[Cost])- barlevitzky8 years agoHelper I
Thanks !