Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

Replacing Values

Hello, 

 

I am looking for help on a issue I have. 

 

currently I have a data set Including Staff Id, who they report to, and there full name. E.g: 

Id: 200, Reports to: 16, Name: John smith

Id: 16, Reports to: 2, Name: Joe Bloggs

 

However I would like to replace the "Reports to" collum (or make a new collum) to show the full name of the staff member whos id is showing in "Reports to" collum, as the "Name" collum is currently showing the name of the staff memeber in the Id collum. 

 

So instead  it would show:

Id: 200, Reports to: 16, Name: Joe bloggs

 

I could manually replace the values, however I imagine this can be quicker in DAX. 

 

I hope this makes sense, 

 

Thanks.

 

1 ACCEPTED SOLUTION
tex628
Community Champion
Community Champion

Create a calculated column:

Reporting To - Name = 
VAR id_ = 'Table'[Reports To]
return 
Calculate( SELECTEDVALUE('Table'[Name]) ;
ALL('Table');
'Table'[ID] = id_
)

 

 image.png


Connect on LinkedIn

View solution in original post

2 REPLIES 2
tex628
Community Champion
Community Champion

Create a calculated column:

Reporting To - Name = 
VAR id_ = 'Table'[Reports To]
return 
Calculate( SELECTEDVALUE('Table'[Name]) ;
ALL('Table');
'Table'[ID] = id_
)

 

 image.png


Connect on LinkedIn
Anonymous
Not applicable

Thanks Tex!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.