Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Solved! Go to Solution.
@BuistJF Try:
Measure =
DIVIDE(
SUMX(FILTER('Conversion',[fruit] = "apples"),[Converted]),
SUMX(FILTER('Conversion',[fruit] = "apples"),[Count])
)
@BuistJF Measure 2 = CALCULATE(sum(Conversion[Converted]) / sum(Conversion[Count]),Conversion[Fruit ]="apples")
hi,
Please try:
Var Converted = sum(Conversion[Converted])
Var Fruit = Calculate ( sum(Conversion[Count]), table[column] = "fruit" )
Var Resultat = Divide(Converted, Fruit, 0)
Return
Result
Br
Marius
@BuistJF Try:
Measure =
DIVIDE(
SUMX(FILTER('Conversion',[fruit] = "apples"),[Converted]),
SUMX(FILTER('Conversion',[fruit] = "apples"),[Count])
)