The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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])
)
User | Count |
---|---|
71 | |
65 | |
62 | |
50 | |
28 |
User | Count |
---|---|
117 | |
75 | |
61 | |
54 | |
42 |