Forum Discussion

IanSwanepoel's avatar
IanSwanepoel
Helper I
8 years ago
Solved

Data from a indirect relationship.

Hi Guys, I'm having trouble viewing data over indirect relationships Above is a view of the relationships. Every Branch has multiple employees, but some employees also belong to more t...
  • IanSwanepoel's avatar
    8 years ago

    I managed to solve the issue doing the following:
    I created a measure that sums up the Rate
             ValueSumRate = SUM(Rates[Rate])
    And then I proceeded to SumX that value by its lowest possible level, being User
             UserCost = SUMX(User,[ValueSumRate])
    Now regardless of how I display the value it always calculates the rates based on the lowest possible value.