Forum Discussion
Measure for different measures?
Hi franorio
You can create additional relationshships between DimAreas and MovementsReport, only they will be Inactive (or dotted lines).
What this means is measures will use the Active relationship by default, but you can use the USERELATIONSHIP function in your DAX meaures when you want to specify an alternative relationship.
Does that make sence?
Many thanks Phil_Seamark!
I created the dotted relationship between my Column Area of my DIMAreas and he column Area of my MovementsReport Table,. but i'm not sure how the forumla should look like..
Count of sumar cf = CALCULATE
COUNTROWS('MovementsReport')
FILTER(
'MovementsReport',
NOT ISBLANK('MovementsReport'[Sumar CF a]), USERELATIONSHIP(DimAreas[Área],MovementsReport[Area])
)
)
Tried this out, but it's not working