Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
apagan
Helper I
Helper I

Dividing 2 results Using DAX

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!

1 ACCEPTED SOLUTION
Sean
Community Champion
Community Champion

@apagan

 

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!

View solution in original post

3 REPLIES 3
v-ljerr-msft
Employee
Employee

Hi @apagan,

 

In addition, the formula below should also work.Smiley Happy

Measure =
CALCULATE (
    DIVIDE ( AVERAGE ( table[Liter] ), AVERAGE ( table[concentration] ), 0 ),
    FILTER ( table, table[Fuel Type] = "Premium" && table[Result] = "Fail" )
)

 

Regards

Sean
Community Champion
Community Champion

@apagan

 

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!

FarhanAhmed1984
Resolver III
Resolver III

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"))

))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.