Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Add value from a related table to a sum

I have a gauge showing sum of hours from [Project]Hours.   To this sum, however, I'd like to add the value from related [Employee]InitValue but can't figure out how to create that calculation.   ...
  • danextian's avatar
    danextian
    8 years ago

    Hi Anonymous,

     

    While you may not be able to use RELATED function on the one side of the many to one relationship, I believe you can do something like 

    MY MEASURE =
    SUM ( 'Project'[Hours] ) + SUM ( 'Employee'[InitValue] )