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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I am attempting to divide the results of two calculations against each other, but I am getting the error, "The end of the input was reached".
Here is the formula that I am using, can you tell me what it is that I am doing wrong?
CALCULATE(
DIVIDE( AVERAGE(table[Liter]), FILTER(table, [Fuel Type]="Premium"),FILTER(table,[Result]="Fail")),
( AVERAGE(table[concentration]), FILTER(table, [Fuel Type]="Premium"),FILTER(table,[Result]="Fail")
)
Thanks, in advance!
Solved! Go to Solution.
I believe this is what you are trying to do
Measure =
DIVIDE (
CALCULATE (
AVERAGE ( table[Liter] ),
FILTER ( table, table[Fuel Type] = "Premium" && table[Result] = "Fail" )
),
CALCULATE (
AVERAGE ( table[concentration] ),
FILTER ( table, table[Fuel Type] = "Premium" && table[Result] = "Fail" )
),
0
)Good Luck!
Hi @apagan,
In addition, the formula below should also work.![]()
Measure =
CALCULATE (
DIVIDE ( AVERAGE ( table[Liter] ), AVERAGE ( table[concentration] ), 0 ),
FILTER ( table, table[Fuel Type] = "Premium" && table[Result] = "Fail" )
)
Regards
I believe this is what you are trying to do
Measure =
DIVIDE (
CALCULATE (
AVERAGE ( table[Liter] ),
FILTER ( table, table[Fuel Type] = "Premium" && table[Result] = "Fail" )
),
CALCULATE (
AVERAGE ( table[concentration] ),
FILTER ( table, table[Fuel Type] = "Premium" && table[Result] = "Fail" )
),
0
)Good Luck!
Please try following
CALCULATE(
DIVIDE( CALCULATE(AVERAGE(table[Liter]), FILTER(table, [Fuel Type]="Premium"),FILTER(table,[Result]="Fail")),
CALCULATE( AVERAGE(table[concentration]), FILTER(table, [Fuel Type]="Premium"),FILTER(table,[Result]="Fail"))
))
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 45 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 108 | |
| 108 | |
| 39 | |
| 33 | |
| 25 |