Forum Discussion
OneWithQuestion
Post Prodigy
4 years agoFilter Child back to Parent(s) without using bidirectional?
What is the "easiest" way to enable filtering on the child record so that selecting a child record will filter the parent(s)? In this scenario, not all parent records have children. I have a ...
- 4 years ago
Just realised your need to show parents without children. Will see if I can modify.
- 4 years ago
Think this works:
PaymentMethodFilter = IF (ISFILTERED ( PaymentMethod ), INT ( NOT ( ISEMPTY ( PaymentMethod ) ) ), 1 )
bcdobbs
Community Champion
4 years agoIf you create a measure like
ParentFilter = INT ( NOT ( ISEMPTY ( 'Customer Payment Methods' ) ) )and put it on the visual level filter of a parent visual (or slicer) with it set to "Is 1" you should get the desired interaction.