Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi there,
I have a table with employee's name and his/her position and need to write formula to get results as it is shown in column 'Position_Full'. Lookupvalue didn't work.. Any help please?
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Position_Full CC =
VAR _currentname = 'Table'[Name]
VAR _lookuptable =
SUMMARIZE (
FILTER ( 'Table', 'Table'[Position] <> BLANK () ),
'Table'[Name],
'Table'[Position]
)
RETURN
MAXX (
FILTER ( _lookuptable, 'Table'[Name] = _currentname ),
'Table'[Position]
)
It worked perfect! Thank you so much!
Hi,
Please check the below picture and the attached pbix file.
Position_Full CC =
VAR _currentname = 'Table'[Name]
VAR _lookuptable =
SUMMARIZE (
FILTER ( 'Table', 'Table'[Position] <> BLANK () ),
'Table'[Name],
'Table'[Position]
)
RETURN
MAXX (
FILTER ( _lookuptable, 'Table'[Name] = _currentname ),
'Table'[Position]
)
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 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 13 | |
| 9 | |
| 9 | |
| 9 | |
| 8 |