Forum Discussion

ovetteabejuela's avatar
ovetteabejuela
Icon for Impactful Individual rankImpactful Individual
9 years ago
Solved

DAX Simple Math | Not Averaging or Aggregating Properly or it is just me?

Hi COmmunity,

 

Why is this not doing average:

 

NumDenColumn1
23.424479A
24.365230B
23.313823C
23.815577D
23.883948E
23.875846F

 

  • sdjensen's avatar
    sdjensen
    9 years ago

    ovetteabejuela,

     

    You could try this:

    Measure = 
    DIVIDE(
    	SUMX( Table1; Table1[Num] * Table1[Den]);
    	SUM(Table1[Den])
    )

8 Replies

    • ovetteabejuela's avatar
      ovetteabejuela
      Icon for Impactful Individual rankImpactful Individual

      vanessafvg

       

       

      I want to achieve highlighted in yellow

      asd = sorry about the field name but it is just Num * Den (23.42 * 4479 = 104898.2)