Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe'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
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.
Solved! Go to Solution.
Create a calculated column:
Reporting To - Name =
VAR id_ = 'Table'[Reports To]
return
Calculate( SELECTEDVALUE('Table'[Name]) ;
ALL('Table');
'Table'[ID] = id_
)
Create a calculated column:
Reporting To - Name =
VAR id_ = 'Table'[Reports To]
return
Calculate( SELECTEDVALUE('Table'[Name]) ;
ALL('Table');
'Table'[ID] = id_
)
Thanks Tex!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 39 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 73 | |
| 70 | |
| 37 | |
| 35 | |
| 26 |