Forum Discussion
Relative Total
- Anonymous5 years ago
Hi Anonymous
I'll give you a quick hint that might save your bacon one day ๐ Please do not create models with 1-to-1 relationships between tables. Such tables are in fact one and the same table and data from them should be consolidated into a single table. If you do consolidate data, your model will suddenly become much simpler and easier to code against.
This measure could do what you want:
[measure] = CALCULATE( [Value], ALLSELECTED( Base_Legal_Condunctor ) )
Hi Anonymous
I'll give you a quick hint that might save your bacon one day ๐ Please do not create models with 1-to-1 relationships between tables. Such tables are in fact one and the same table and data from them should be consolidated into a single table. If you do consolidate data, your model will suddenly become much simpler and easier to code against.
This measure could do what you want:
[measure] =
CALCULATE(
[Value],
ALLSELECTED( Base_Legal_Condunctor )
)