Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello
I've got the following Active and Inactive relationship between 2 tables. Is there a way to create slicers that display StudentName for Proposer1 and Proposer2?
I've tried using SelectedValue, but can't get it to work, I've als seen a thread from 2020 suggesting 2 tblStudents, but this seems on the heavy side, is there an easier soluion??
Thanks in advance
Roy
Solved! Go to Solution.
hi @ryand009
How about this:
1. Measure on active relationship
Measure 1 = MAX('tblProposals'[Proposer1])
2 Measure on inactive relationship:
Measure 2 = CALCULATE(
MAX('tblProposals'[Proposer2]),
USERELATIONSHIP('tblStudents'[StudentID], 'tblProposals'[Proposer2])
)
Hope it helps!
Your picture joins StudentID ?
You can consume inactive relationships via measures and USERELATIONSHIP
hi @ryand009
How about this:
1. Measure on active relationship
Measure 1 = MAX('tblProposals'[Proposer1])
2 Measure on inactive relationship:
Measure 2 = CALCULATE(
MAX('tblProposals'[Proposer2]),
USERELATIONSHIP('tblStudents'[StudentID], 'tblProposals'[Proposer2])
)
Hope it helps!
User | Count |
---|---|
14 | |
10 | |
7 | |
6 | |
5 |
User | Count |
---|---|
30 | |
19 | |
12 | |
7 | |
5 |