- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Get Manager ID from Employee Full Name vs. Incomplete Manager Name
Hi guys,
I still bang my head towards this.
I have a CSV that is like this:
EmployeeID / EmployeeName / ManagerName
1 / John Kenneth von Lichtenstein / Barbara Streisand
2 / Cruela Barbara Streisand del Sol / John Kenneth
3 / Abdul Abi el Camino / John Kenneth
etc.
The idea is that the Manager Name column is a short version of the employee's full name, so I'm having a hard time getting the Manager ID from this table.
I'm trying to do a:
IF(Text.Contains[EmployeeName], [ManagerName]), [EmployeeID])
But I'm not sure how to do that in DAX or Power Query... cause it's a sort of XLOOKUP involved per column.
Any ideas? Or best practices in this case.
Thank you very much for your support!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi,
Show the expected result.
Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @UncleCaesar ,
You can try formula like below:
ManagerID =
VAR CurrentEmployeeName = 'YourTable'[EmployeeName]
VAR ManagerName = 'YourTable'[ManagerName]
VAR CurrentEmployeeID = 'YourTable'[EmployeeID]
VAR ManagerID =
IF (
ISBLANK ( CurrentEmployeeName ) || ISBLANK ( ManagerName ),
BLANK (),
VAR ManagerNameList =
VALUES ( 'YourTable'[ManagerName] )
VAR ManagerIDList =
FILTER ( 'YourTable', CONTAINSSTRING ( CurrentEmployeeName, [ManagerName] ) )
RETURN
MAXX ( ManagerIDList, [EmployeeID] )
)
RETURN
ManagerID
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

This output is what I'm looking for. Thank you!
For some reason, it doesn't work for me 😞 It is a little buggy, not sure what I might be doing wrong.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @UncleCaesar ,
You need to create a calculated column instead of a measure, which is probably why you're getting it wrong. Refer to below pbix file.
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, looking closely it doesn't work for you either, cause Barbara Streisand has Manager ID "2" instead of "3" and John Kenneth appears correct only on the 2nd row, on the 3rd one it's blank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

not clear about the request. What's the expected output based on the sample data you provided?
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!

Helpful resources
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
01-25-2025 08:24 AM | |||
12-30-2024 11:47 AM | |||
07-14-2022 10:10 AM | |||
02-02-2022 03:31 AM | |||
01-04-2024 12:16 PM |
User | Count |
---|---|
83 | |
80 | |
47 | |
37 | |
37 |