Forum Discussion
Anonymous
7 years agoNot applicable
Profit Report
Hi there I need to build a profit report as I have 3 tables as the following: A- Table 1 contains: 1- Revenue amount 2- Revenue Date 3- Project ID ...
- 7 years ago
Hi Anonymous ,
To create another new calculated table as a bridge table, and create relationship between your fact tables.
Project = DISTINCT ( UNION ( VALUES ( table1[projectid] ), VALUES ( table2[projectid] ), VALUES ( table3[projectid] ) ) )
v-frfei-msft
Community Support
7 years agoHi Anonymous ,
To create another new calculated table as a bridge table, and create relationship between your fact tables.
Project =
DISTINCT (
UNION (
VALUES ( table1[projectid] ),
VALUES ( table2[projectid] ),
VALUES ( table3[projectid] )
)
)