Forum Discussion
Help required in DAX
Anonymous look at my blog post on RLS and it can help you to make the solution.
https://perytus.com/2019/12/25/how-to-set-default-value-of-single-select-slicer-using-rls/
I guess m scenario is diffrent from what yu have mentioned in your blog.Please correct me if Im wrong.
I neeed Z_Roles table value get filter with user_role table irrespective of relationship direction with the help of DAX .I need DAX formula to acheive this.
- v-chuncz-msft6 years agoCommunity Support
Anonymous
Drag measure below to Visual level filters and set Show items when the value is 1.
Measure = IF ( SELECTEDVALUE ( Z_roles[role id] ) IN VALUES ( user_role[role id] ), 1 )- Anonymous6 years agoNot applicable
We are not suppoesed to use visual level filter.
I there any way t handle filtering of data in many to one relationship without enabling cross filter on both sides.Can we achieve same in DAX scripts?
Please suggest me on this.