March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi all,
I have a table (showing employee hours worked) with about 250k rows. Instead of merging it with 2 other tables I assume using a measure loads my reports faster. (If not I will stick to merging the tables).
So basically i have these 3 tables below. The yellow columns are the result after merging the 3 tables. So i would like a measure to replicate that merge.
Thanks for your help.
Jonas
Solved! Go to Solution.
Hi @J_o_n_a_s ,
Please try:
First, create relationships between the three tables:
Then apply the measures to the table visual:
Department(Employee) = CALCULATE( MAX('Table 1'[Department]),FILTER('Table 1',[Employee]=MAX('Table 3'[Employee])))
Department(Project) = CALCULATE( MAX('Table 2'[Department]),FILTER('Table 2',[Project]=MAX('Table 3'[Project])))
Output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @J_o_n_a_s ,
Please try:
First, create relationships between the three tables:
Then apply the measures to the table visual:
Department(Employee) = CALCULATE( MAX('Table 1'[Department]),FILTER('Table 1',[Employee]=MAX('Table 3'[Employee])))
Department(Project) = CALCULATE( MAX('Table 2'[Department]),FILTER('Table 2',[Project]=MAX('Table 3'[Project])))
Output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you 😀
@J_o_n_a_s , Join Table 3 with Table 2 and Table 1 on the project and employee respectively.
Then simply create a measure sum(Table3[Hours])
and display along with columns from table 1, Table 3
Thanks @amitchandak . But your method makes use of merging. I am trying to find a way of not having those yellow columns in table 3. But having a measure instead.
Thanks
Jonas
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |