This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi there,
I have data where there are various distinctions of the same role category.
For example, Test Analyst: End to End, Test Analyst: Infrastructure, System Admin: DevOps, System Admin: Operati
ons, Training Manager, Operations Manager etc.
What would be the best way to create a column which aggregates these roles under the same category? For example, simply Test Analyst, System Admin and Managerial.
I know I could use multiple if statements or replace the values but this seems cumbersome and not like best practice.
Please find sample data below.
| Name | Dept | Role |
| Jane Doe | HR | Test Analyst End to End |
| John Smith | Research | IT Manager |
| Frank Frost | Strategy | Operations Manager |
| Sam Sun | Finances | System Admin Operations |
| Jack Jill | Engineering | Test Analyst Infrastructure |
| Dennis Menace | Finances | Finance Manager |
| Albert Einstein | Strategy | System Admin DevOps |
Thanks!
Solved! Go to Solution.
If roles are large in number, then it is better to maintain a mapping table. Then you can do a lookup on the mapping table.
I am not sure how many roles are there but on the basis of limited data whatever you have provided, following formula would work in a custom column
= if Text.Contains([Role],"Manager") then "Managerial" else Text.BeforeDelimiter([Role]," ",1)If roles are large in number, then it is better to maintain a mapping table. Then you can do a lookup on the mapping table.
I am not sure how many roles are there but on the basis of limited data whatever you have provided, following formula would work in a custom column
= if Text.Contains([Role],"Manager") then "Managerial" else Text.BeforeDelimiter([Role]," ",1)Thank you for this! I will try it out. Just for future reference, do you know of any useful references on the process of creating mapping tables?
Mapping table means this
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.