cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Jmcdonough1997
Frequent Visitor

How to paste a managers email from this table across columns

 
Hi all, I have a table that looks like this

 

Employee NameEmployee ManagerEmployee EmailManager Email
Employee 1Manager 1Employee 1 @workManager 1 @ work
Manager 2Manager 1Manager2 @ workManager 1 @ work
Employee 2Manager 2Employee 2 @ work 
Manager 1Manager 3Manager 1 @ WorkManager 3@ Work
Manager 3Manager 3Manager 3 @ WorkManager 3 @ Work

 

Every manager and employee, and their email, will appear in the employee name, and employee email. What I would like to do, is create a calculated column that will search the manager name column, match that name to the employee name, column, and then paste the employee email from that row to be used, to make sure i have an email column free of blanks. am i able to do this in dax or MQuery?

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Jmcdonough1997 , a new column

maxx(filter(Table, Table[Name] = earlier([Employee Manager]) ) , [Employee email])

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Jmcdonough1997 , a new column

maxx(filter(Table, Table[Name] = earlier([Employee Manager]) ) , [Employee email])

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors