Forum Discussion

Tinkelbell's avatar
Tinkelbell
New Member
3 years ago
Solved

DAX weighted average help for Power pivot

  Rm GroupValues    
  Beans nuts Flour 
Date (Month)DocumentSum of Outstanding QtyWeight2Sum of Outstanding QtyWeight2Sum of Outstanding QtyWeight2
AprSG10000001.068.350100000030000007000001700000
 PN683501.068.350100000030000007000001700000
 Dxb  100000030000003000001700000
Apr Total 1068350 3000000 1700000 
MaySG10000002.000.000    
 PN10000002.000.000    
 Dxb      
May Total 2000000     
JunSG      
 PN      
Jun Total       
JulSG      
 PN      
Jul Total       
OctSG      
 PN      
Oct Total       
NovSG      
 PN      
Nov Total       
DecSG      
 PN      
Dec Total       
Grand Total       

 

 

I need help in creating a Dax formula for this pivot. I want the total outstanding qty for every month and group( Beans, nuts etc. to appear in the document rows ( just the yellow numbers.) How can I compute a DAX formula for that? Would really love to hear some suggestions as I have been struggling with this for days!

  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Tinkelbell ,

     

    I think your table should look like as below.

    You can try code as below to create a measure.

    Weight2 = 
    CALCULATE(SUM('Table'[Outstanding Qty]),ALLEXCEPT('Table','Table'[Date(Month)],'Table'[Rm Group]))

    Result is as below.

     

    Best Regards,
    Rico Zhou

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

2 Replies