Forum Discussion
Oliver_Buchanan
Helper I
27 days agoUSERELATIONSHIP Issue
Hello, I'm having an issue diagnosing where the issues lies for this. But essentially my measures using USERELATIONSHIP aren't giving the correct values. Take these two measures CollectionAct...
Praful_Potphode
Super User
27 days agoHi Oliver_Buchanan ,
- Check cross filter direction of 'Action'[CollectionActionEventKey] and 'ActionEvent'[ActionEventKey]
- If its not possible to change it permanently, then change cross filter direction using below DAX example.
CollectionActionEventTimeuse =
CALCULATE (
MAX ( 'ActionEvent'[Created] ),
CROSSFILTER ( 'Action'[CollectionActionEventKey], 'ActionEvent'[ActionEventKey], BOTH )
)
I have given example of both cross filter direction you can change and try accordingly.
Please give kudos or mark it as solution once confirmed.
Thanks and Regards,
Praful
Oliver_Buchanan
Helper I
25 days agoPraful_Potphode Hey Praful, did you get a chance to see my reply?