Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. 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 |
|---|---|
| 53 | |
| 40 | |
| 38 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 34 | |
| 33 | |
| 30 |