Forum Discussion

sokatenaj's avatar
sokatenaj
Advocate II
8 years ago
Solved

Missing Values

Hi Folks,

 

I have the following data: 

 

 

 

 

 

 

 

 

 

I have the following measure that represents "Annual Salary (USD)": 

            Annual Salary (USD) = SUMX(Active, Active[Annual Salary (Local Currency)]*Related('FX Rates'[Exchange Rate]))

 

I have a foreign exchange table has the rates to calculate from our different currencies to USD so we can budget in US Dollars. However, there are some lines that just don't calculate and I have NO idea why. If you notice, the 5th and 6th lines are not calculating to USD. Even though the previous lines do and subsequent lines do. 

 

What the heck could be the issue? I have about 80 employees out of 7000 that this is happening to from the "Annual Salary (Local Currency)" field, but the data looks the same. When I look at the raw data from Oracle, it looks fine. Any idea why this is happening? I'm so stumped! 

 

Please and thank you!

 

 

  • sokatenaj's avatar
    sokatenaj
    8 years ago

    I ended up figuring out what the issue was. I had a table with a relationship that was causing missing values because of the bidirectional nature of the relationship and the type. I removed it and just did it as a VLOOKUP and all is well :) 

     

    Thanks so much. 

5 Replies

  • did you added this new calculation as a measure or column.

     

    Can you try following, add as a new column:

     

    Annual Salary (USD) Test = Active[Annual Salary (Local Currency)]*Related('FX Rates'[Exchange Rate])

     

     

      • parry2k's avatar
        parry2k
        Super User

        Did you tried adding a column as suggested in my previous reply?