Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Running Total Issue for blank values

Hello,
I have a table with date, amount,code,location. It has missing months, I have created a table that has all month data. I have related this table to solve the issue of the missing date. My amount has blank values if I for a few "code" in a few months. I have fixed it by a measure  = IF(SUM('Table'[ Amount])=BLANK(),SUM('Table'[Amount])+0,SUM('Table'[Amount]))



Now my requirement is to calculate the running total and if the values of any month are blank(now zero as I replace the blank with zero) then I want that it will show the last month value.
I am creating a table visual with code, amount and date(this is from the date table that is created to fill missing months)
Running Total =CALCULATE([measure],

FILTER(ALLSELECTED('dT'[EOM]),
'dT'[EOM]<=MAX('dT'[EOM])))
But it is showing only zero for all the missing months and not generating the last month's values for the zero. Rest it is working fine and calculating the running total for all the months that have some value.

Basically, I want if Jan has 60 for a particular account and Feb has 0 or blank for that account then I want Feb to show 60 as well.
This is broken up based on a code column. I hope I am clear in explanation. I have tried many solutions, but nothing worked.
Can anyone sort this one for me?
  • Hi Anonymous 

     

    Let me know if you'd like to get below desired running total:

     

    RunningTotal = CALCULATE(SUM(Table1[Value]),FILTER(ALL(Table1),[Date]<=MAX(Table1[Date])))

     

     

7 Replies

  • v-diye-msft's avatar
    v-diye-msft
    Community Support

    Hi Anonymous 

     

    If you'd like to show the blank value as the last value, there're 2 methods:

    1. Using Fill down in power query:

    2. Using the measure below:

    Measure = var a = CALCULATE(MAX('Table'[Month]),FILTER(ALL('Table'),[Month]<MAX('Table'[Month])&&[Amount]<>BLANK()))
    var b = CALCULATE(MAX('Table'[Amount]),FILTER(ALL('Table'),[Month]=a))
    Return
    IF(MAX('Table'[Amount])=BLANK()||MAX('Table'[Amount])=0,b,MAX('Table'[Amount])
    )

  • Hi,

    Create a Calendar Table and build a relationship from the Date column of your Table to the Date column of the Calendar Table.  In the Calendar Table, create 2 calculated column formulas to extract Year and Month

    Year = Year(Calendar[Date])

    Month Name = FORMAT(Calendar[Date],"mmmm")

    Month Number = MONTH(Calendar[Date])

    Click on any cell in the Month Name column and go to Sort By Column > Month Number.

    To your visual, drag Year and Month from the Calendar Table.

    Write these measures:

    Measure = SUM('Table'[Amount])

    Running Total = CALCULATE([Measure],DATESYTD(Calendar[Date],"31/12"))

    Hope this helps.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hello Ashish_Mathur  and v-diye-msft ,

      Thanks for your responses. But I have still got 0 with both the formulas from DAX. Also, I have to display the value with dates in end of month format. All of this is also done.

      I have missing dates on my main table. So for that, I have made a calendar table and built a relationship with the main table.
      Now, I have also fixed the blanks with zero as mentioned earlier. But the missing month value is not changing the zero to last month's value. For example let say my data for 2015 has Jan, March, Aug, Sep, Oct, Nov and Dec.
      Month  Amount  Running Total
      JAN      70                 70
      FEB       0                  0
      MARCH  140             210
      APRIL      0                   0
      MAY        0                    0
      JUNE       0                       0
      JULY        0                     0
      AUG     1900                2110
      SEP       30                    2140
      OCT    100                    2240
      NOV  -1000                 1240
      DEC    3000                  4240


      Note 0 were blank in the Amount column, I have make them zero. But when I am doing running total with these missing dates then the missing month value is always 0 and not getting into account the last month value

      • Ashish_Mathur's avatar
        Ashish_Mathur
        Super User

        Hi,

        My solution should work.  Share the link from where i can download your PBI file.