Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
My mult. of W2 column is working with this measure:
Mult. of W2 = (SUM(Merge2[InvoiceAmnt]) / SUM(Merge2[Cost+Exp Total])/100)
Solved! Go to Solution.
First of all, mate, it's not a measure you're working with but a calculated column. The stuff you think is a measure is an in-column expression.
Mult. of W2 = var __invoiceSum = SUM( Merge2[InvoiceAmnt] ) var __costMinusTimeSum = SUM( Merge2[Cost-Time] ) var __costPlusExpSum = SUM( Merge2[Cost+Exp Total] ) var __exprWhenExpensesEquals0 = DIVIDE ( __invoiceSum, __costMinusTimeSum * 100 ) var __exprWhenExpensesNotEquals0 = divide ( __invoiceSum, __costPlusExpSum * 100 ) var __result = if ( Merge2[Expenses] = 0, __exprWhenExpensesEquals0, __exprWhenExpensesNotEquals0 ) return __result
Best
Darek
First of all, mate, it's not a measure you're working with but a calculated column. The stuff you think is a measure is an in-column expression.
Mult. of W2 = var __invoiceSum = SUM( Merge2[InvoiceAmnt] ) var __costMinusTimeSum = SUM( Merge2[Cost-Time] ) var __costPlusExpSum = SUM( Merge2[Cost+Exp Total] ) var __exprWhenExpensesEquals0 = DIVIDE ( __invoiceSum, __costMinusTimeSum * 100 ) var __exprWhenExpensesNotEquals0 = divide ( __invoiceSum, __costPlusExpSum * 100 ) var __result = if ( Merge2[Expenses] = 0, __exprWhenExpensesEquals0, __exprWhenExpensesNotEquals0 ) return __result
Best
Darek
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 9 | |
| 6 | |
| 5 |
| User | Count |
|---|---|
| 27 | |
| 22 | |
| 19 | |
| 17 | |
| 11 |