Forum Discussion

imran_uridetech's avatar
imran_uridetech
Frequent Visitor
5 years ago
Solved

Summarize

I am trying to Summarize a Table and calculate running total in a new Table As you can see in the attached pictures, the TempTable (1st Picture) with its DAX codes and when I try to SUMX ...
  • mahoneypat's avatar
    mahoneypat
    5 years ago

    Please try it with this change

     

    VAR Result1=SUMMARIZE(PnL,[PnL_Order],"Amount1",
    VAR _curOrder=MAX(PnL[PnL_Order])
    Return SUMX(FILTER(TempTable, [Order] <=_curOrder), [Summary])
     
    Pat