Forum Discussion

ashraf_K's avatar
ashraf_K
Frequent Visitor
2 years ago
Solved

Running Difference per day and name

Below is a sample data that is being used.

The requirement is to calculate the remaining for each row by substracting it from the previous line.

Basically for  10 Oct it is easily calculated, however for 18 OCT we should take 3,445,900 - 1,000,00 as we had 2 purchased on 18 Oct

Is there a way to achieve this on power BI?

 

Vessel NamePurchase dateRequiredPurchasedremaining
RT 0110-Oct-22 3,645,900    200,000  3,445,900
RT 0118-Oct-22     500,000 
RT 0119-Oct-22  1,400,000 
RT 0118-Oct-22     500,000 
RT 0129-Mar-22     400,000 
RT 0124-Nov-22     645,000 
RU 0516-Mar-233,459,2501,500,0001,959,250
RU 0503-Apr-23 200,000 
RU 0503-Apr-23 400,000 
RU 0504-Apr-23 500,000 
MV 0511-Apr-23 100,000 
MV 0511-Apr-23 1,000,000 
  • Then, something like on the screenshot below. The table visual allows sorting by multiple columns if you hold SHIFT key.

    In plain text:

    Remaining = 
    VAR CurDate = [Purchase date]
    VAR CurVessel = [Vessel Name]
    VAR _tbl = FILTER ( Data, [Vessel Name] = CurVessel && [Purchase date] <= CurDate )
    RETURN SUMX ( FILTER ( Data, [Vessel Name] = CurVessel ) , [Required] ) - SUMX ( _tbl, [Purchased] )

    Best Regards,

    Alexander

    My YouTube vlog in English

    My YouTube vlog in Russian

4 Replies

  • Hi ashraf_K,

    I'd solve your task with a calculation column like this. The question is how to treat the date 29.03.2022, which appears somewhere in the middle.

    In plain text:

    Remaining = 
    VAR CurDate = [Purchase date]
    VAR CurVessel = [Vessel Name]
    VAR _tbl = FILTER ( Data, [Vessel Name] = CurVessel && [Purchase date] <= CurDate )
    RETURN SUMX ( _tbl, [Required] ) - SUMX ( _tbl, [Purchased] )

    Best Regards,

    Alexander

    My YouTube vlog in English

    My YouTube vlog in Russian

     

    • ashraf_K's avatar
      ashraf_K
      Frequent Visitor

      Ideally it should be sorted by purchase date so that we can show how the purchase is progressing through time

      • barritown's avatar
        barritown
        Icon for Solution Sage rankSolution Sage

        Then, something like on the screenshot below. The table visual allows sorting by multiple columns if you hold SHIFT key.

        In plain text:

        Remaining = 
        VAR CurDate = [Purchase date]
        VAR CurVessel = [Vessel Name]
        VAR _tbl = FILTER ( Data, [Vessel Name] = CurVessel && [Purchase date] <= CurDate )
        RETURN SUMX ( FILTER ( Data, [Vessel Name] = CurVessel ) , [Required] ) - SUMX ( _tbl, [Purchased] )

        Best Regards,

        Alexander

        My YouTube vlog in English

        My YouTube vlog in Russian