Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am trying to pull one value into a new table based on a column in another table with multiple values. The key is, I want to pull one distinct value based on a criteria. The values in the 2nd table are as:
Name | Value |
A | 1 |
A | 1 |
A | 2 |
B | 1 |
B | 1 |
B | 3 |
C | 1 |
C | 1 |
C | 4 |
D | 1 |
D | 1 |
D | 5 |
E | 1 |
E | 1 |
E | 4 |
Desired result is below as:
Pull the distinct value but:
If the value 2 is present, then pull 2
If the value 5 is present, then pull 5
If the value 1 is present, then pull 1
Name | Value |
A | 2 |
B | 1 |
C | 1 |
D | 5 |
E | 1 |
Solved! Go to Solution.
Hi @raragan
please try
Values =
VAR CurrentName = Table1[Nsme]
VAR T1 =
FILTER ( Table2, Table2[Nsme] = CurrentName )
VAR T2 =
DISTINCT ( SELECTCOLUMNS ( T1, "@Value", [Value] ) )
RETURN
SWITCH ( TRUE (), 2 IN T2, 2, 5 IN T2, 5, 1 IN T2, 1 )
Hi @raragan
please try
Values =
VAR CurrentName = Table1[Nsme]
VAR T1 =
FILTER ( Table2, Table2[Nsme] = CurrentName )
VAR T2 =
DISTINCT ( SELECTCOLUMNS ( T1, "@Value", [Value] ) )
RETURN
SWITCH ( TRUE (), 2 IN T2, 2, 5 IN T2, 5, 1 IN T2, 1 )
Thank you so much. I will definately continue to use this ongoing.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
72 | |
67 | |
51 | |
38 | |
26 |
User | Count |
---|---|
89 | |
52 | |
45 | |
39 | |
38 |