Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have 2 tables.
One table has many individual transaction records each containing an employee's name and other data.
Another table is an employee data table containing the employee's name and their initials.
There is a one to many relationship from the employee's name field in employee data table to the employee's name in the individual transactions records table.
I want to bring over the particular employee's intials from the employee data table and add their initials to their transaction records so I can use their initials on the transaction report, instead of their name.
ie.
1) Look at the current transaction record and find the employee's name.
2) Based on that name, find their initials in the employee info table.
3) Bring over their initials from the employee data table to the transaction record into a new column.
Solved! Go to Solution.
@Dan_at_TWE , You can create a new calculated column for this to get intials using Related function as two table have relation on the basis of employee name column
EmployeeInitials = RELATED('EmployeeData'[Initials])
Proud to be a Super User! |
|
@Dan_at_TWE , You can create a new calculated column for this to get intials using Related function as two table have relation on the basis of employee name column
EmployeeInitials = RELATED('EmployeeData'[Initials])
Proud to be a Super User! |
|
Thanks. The simplicity evaded me. LOL!
calculated column using RELATED to get the value from the dimension table?
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
66 | |
65 | |
57 | |
39 | |
28 |
User | Count |
---|---|
84 | |
60 | |
45 | |
41 | |
39 |