Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi all,
I'm trying to do a lookupvalue with a filter but can't seem to get it working.
I want to create a Measure to Lookup the "Group Role" where the "People Leader" is TRUE and return the "Name".
This should give me a new column with the following data:
ROW 1 Krystle Te Raki
ROW 2 Jason Gould
ROW 3 Krystle Te Raki
ROW 4 Henry Wong
ROW 5 Jason Gould
ROW 6 Krystle Te Raki
ROW 7 Henry Wong
Solved! Go to Solution.
This measure:
Measure =
LOOKUPVALUE(
'Table'[Name],
'Table'[Group Role], MIN( 'Table'[Group Role] ),
'Table'[People Leader], TRUE
)Regards
That must mean that your table can contain duplicate entries. Post some more realistic data, since that which you posted does not contain any duplicates.
Regards
Thanks! I fixed up my data and removed the duplicates and it works! Thanks so much
This measure:
Measure =
LOOKUPVALUE(
'Table'[Name],
'Table'[Group Role], MIN( 'Table'[Group Role] ),
'Table'[People Leader], TRUE
)Regards
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 8 | |
| 8 | |
| 7 |