Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. 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 |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 31 | |
| 25 |