Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have a matrix table showing latest dates of various tests employess have taken. The tests are in 2 seperate tables so I am showing the latest date of each test but I am getting 2 columns because I need max date for each test.
Example:
Test Table 1
| EmployeeID | Test Number | Date |
| 1111 | 11 | 1/1/2020 |
| 1111 | 11 | 2/2/2020 |
| 1111 | 33 | 3/3/2020 |
Test Table 2
| EmployeeID | Test Number | Date |
| 1111 | aa | 11/11/2020 |
| 2222 | bb | 2/22/2020 |
| 3333 | cc | 3/30/2020 |
What I am showing in BI
Matrix Table
| EmployeeID | Test Number | Date (Test Table 1) | Date (Test Table 2) |
| 1111 | 11 | 2/2/2020 | |
| 1111 | 33 | 3/3/2020 | |
| 1111 | aa | 11/11/2020 |
What I want to show
| EmployeeID | Test Number | Date |
| 1111 | 11 | 2/2/2020 |
| 1111 | 33 | 3/3/2020 |
| 1111 | aa | 11/11/2020 |
Solved! Go to Solution.
Hi,
Ensure both tables have the same headings and append them. To your visual, drag ID and Test and write this measure
Last date of test = max(Data[Date])
Format this measure as Date.
Hope this helps.
Hi,
Ensure both tables have the same headings and append them. To your visual, drag ID and Test and write this measure
Last date of test = max(Data[Date])
Format this measure as Date.
Hope this helps.
In dax you can create a calculated column to concatenate column from tab1 and tab2 using CONCATENATE and RELATED functions.
How do I do this?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.