Forum Discussion
Anonymous
6 years agoNot applicable
Using RELATED() across a bridge table?
I have two tables that are connected via a bridge table. What is the best approach to creating a measure that aims to multiply columns values from one table with a column from the table on the other ...
- 6 years ago
Hi Anonymous
Measures below:
sum_NRI = SUM(dAttributes[NRI]) sum_oilvolume = SUM(fProduction[oilvolume]) mutiply = [sum_NRI]*[sum_oilvolume]Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
lbendlin
6 years agoSuper User
I think Related() only works if you pull fields from the 1 side table to the many side table. That means you can't use it with bridge tables.