Forum Discussion
Anonymous
4 years agoNot applicable
Adding a column from a related table
I have two tables with one-to-many relationship between them. One is an 'orders' table and the other is 'details' table. Orders table have unique OrderIDs while the Details table can have non-unique...
- 4 years ago
Create a calculated column like below in Order Table.
_Total Sales = CALCULATE(SUM('Table (2)'[sales]))
FarhanAhmed
4 years agoCommunity Champion
Create a calculated column like below in Order Table.
_Total Sales = CALCULATE(SUM('Table (2)'[sales]))