Forum Discussion

orangeatom's avatar
orangeatom
Resolver I
8 years ago

Calculate Measure not returning proper sum

Hello,

I am attempting to create a measure that will return the sum of a few calculated measures (sourced from different tables). I have a simple Calculate function does return the correct average but i can't seem to get the sum to work. I also use a few measure on measure on measures to get to this point:

 

Measure_PTI = DIVIDE(([M_MeasurementTotal]-[M_MeasurementDeviation]),[M_MeasurementTotal])
Measure_UserWeight = DIVIDE([M_Users],[M_UsersTotal])
MeasurePTIWeight = [Measure_PTI] * [Measure_UserWeight]

 

MeasurePTIWeightPercent = CALCULATE([M_MeasurePTIWeight])

 

CountryAverageM_MeasurePTIM_UserWeightM_MeasurePTIWeight
127.1966217399.17%1.60%1.59%
2323.350072432.48%2.00%0.65%
31.432356916100.00%21.60%21.60%
4191.72285930.20%7.20%0.01%
5155.49665430.00%4.00%0.00%
645.9348328599.21%1.20%1.19%
740.8160948699.17%2.00%1.98%
860.0549355698.85%4.00%3.95%
90100.00%2.00%2.00%
10154.93434424.90%2.40%0.12%
11162.65366730.12%8.00%0.01%
12112.150918296.01%43.20%41.48%
13262.97869970.40%0.80%0.00%
   Current5.74%
   Goal74.58%

 

I have read a few threads and tired different solutions and I am not sure if there is an issue with the formula or if i have other issues like the model not being setup correctly.

2 Replies