Forum Discussion
quinla01
7 years agoAdvocate I
Add Column - Map ID to Value
Hi All, Hoping this is fairly simple. I have single table as shown below (real table has 1000's of rows) I'm not interested in "Manager ID". I want manager name as per below. ...
- 7 years ago
hi, quinla01
You could use LOOKUPVALUE Function to create a calculate column as below:
Manager = IF(ISBLANK('Table'[Manager ID])=FALSE(),LOOKUPVALUE('Table'[Employee],'Table'[ID],'Table'[Manager ID]))Result:
Best Regards,
Lin
v-lili6-msft
7 years agoCommunity Support
hi, quinla01
You could use LOOKUPVALUE Function to create a calculate column as below:
Manager = IF(ISBLANK('Table'[Manager ID])=FALSE(),LOOKUPVALUE('Table'[Employee],'Table'[ID],'Table'[Manager ID]))
Result:
Best Regards,
Lin
quinla01
7 years agoAdvocate I
That worked a charm. Many Thanks.
Out of interest, do you know how this would be done from the query editor rather than in report view?
Thanks