Hi All ..!!
I am just wondering how to convert a measure to a new column in the Data .
Basically i have 4 columns from two different tables .
Table1[PersonID]
Table1[HoursAllocated]
Table2[Actual Hours]
Table2[HoursDifference]---> Measure. (Which gives the correct results)
The above Measure is -
Solved! Go to Solution.
Hi @MartinAa ,
I created some data:
Table1:
Table2:
Here are the steps you can follow:
1. Create calculated column.
Column_Hours_Difference =
'Table2'[Actual Hours] - AVERAGEX('Table1','Table1'[HoursAllocated])
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @MartinAa ,
I created some data:
Table1:
Table2:
Here are the steps you can follow:
1. Create calculated column.
Column_Hours_Difference =
'Table2'[Actual Hours] - AVERAGEX('Table1','Table1'[HoursAllocated])
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@MartinAa , That will not help, You have create a measure.
or copy value from one table to another
refer 4 ways (related, relatedtable, lookupvalue, sumx/minx/maxx with filter) to copy data from one table to another
https://www.youtube.com/watch?v=Wu1mWxR23jU
https://www.youtube.com/watch?v=czNHt7UXIe8
User | Count |
---|---|
130 | |
81 | |
64 | |
57 | |
55 |
User | Count |
---|---|
213 | |
108 | |
86 | |
82 | |
76 |