Forum Discussion
Anonymous
3 years agoNot applicable
USERELATIONSHIP not working?
I have the following relationships in my data model: There is an active relationship between DimCalendar[Datum] and FactAppointment[Datum afspraak]. There is an inactive relationship betwee...
FreemanZ
3 years agoSuper User
try to add a physical column.
FreemanZ
3 years agoSuper User
a imtermediate measure is not working in your case, because
a measure is implicitely wrapped with CALCULATE. So it is like this
CALCULATE(
CALCULATE,
USERELATIONSHIP()
)
As the filter argument of the inner CALCULATE has higher priority over its outer filter context (from USERELATIONSHIP), so again USERELATIONSHIP is useless.