Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Milan6687
Helper II
Helper II

Running total for different ids for the months not having any data

Hi folks,

 

I need to create the running total for different ids for the range of date selected via slicer.

 

For e.g. I have TableA with below values:

 

Date                  Id        Name       Revenue

01/01/2021       01       Laptop      500

02/02/2021       01        Laptop      300

01/01/2021        02       Chair         200

02/02/2021        02       Chair          300

 

If there is no data for any month it should return previous running total as shown below. For March and April there is no data but I previous running total is expected. Tried creating one date table and have left outer join but not worked.

 

Date               Id          Name        RunningRevenue

jan 21    01         Laptop               500

feb 21     01        Laptop              800

mar 21    01        Laptop              800

apr 21     01        Laptop              800

jan 21     02         Chair                 200

feb 21     02         Chair                 500

mar 21    02         Chair                 500

apr 21     02         Chair                 500

 

Waiting for some guidance.

 

Thanks in Advance.

 

 

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I suggest having a calendar table, and data model structure like below.

All measures are in the sample pbix file (link down below).

 

Picture1.png

 

Link to the sample pbix file 

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi,

I suggest having a calendar table, and data model structure like below.

All measures are in the sample pbix file (link down below).

 

Picture1.png

 

Link to the sample pbix file 

 

 

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Thank you. It worked. Appericiate your help.

amitchandak
Super User
Super User

@Milan6687 , Try with date table joined with date of you table, use month from date

 

calculate(sum(Table[revenue]), filter(allselected('Date'), 'Date'[Date] <= max('Date'[Date])))

 

 

or with date and ID table

 

calculate(sum(Table[revenue]), filter(allselected('Date'), 'Date'[Date] <= max('Date'[Date])), filter(allselected(ID), ID[Id] =max(ID[id])))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors