Forum Discussion
dhanekula1996
4 years agoHelper I
Row Level Percentage Calculation
Hello all, I am trying to calulate difference between two measures. But it does not work at row level my measure if I use Divide / "/" is calculating total of the measures and applying divide functi...
amitchandak
4 years agoSuper User
dhanekula1996 , if Cost and MAx cost are measures the
A new measure like this should do
divide([cost], [Max cost] )
If they are column then a new measure like
divide(Sum(Table[cost]), Sum(Table[Max cost] ))
- dhanekula19964 years agoHelper I
Hello Sir,
Thank you for responding. Yes both Cost (Cost table) and MAX(Measure Table) are measures and tried the same "Divide" to produce the table 1 result.