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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
untrue
Regular Visitor

Another question on Rolling Sum

I have a table of quantities and respective dates. I want to create a Rolling Sum by quarters.

E.g. the table is the following:

Date            Qty

01-Jan-17     7

01-Oct-17     2

 

The formula I am using:

 

Running Total CANX Quantity =
CALCULATE (
SUM(Table[Qty]),
FILTER (
ALL( Table ),
Table[Date] <= max(Table[Date])
),
)

 

The problem is that in the Matrix Viz the Data is shown as:

 

2017

Qtr 1    Qtr 2    Qtr 3     Qtr 4

 7                                     9

 

And I need  Qtr 2 and Qtr 3 also display 7

 

Any suggestions?

1 ACCEPTED SOLUTION
v-ljerr-msft
Employee
Employee

Hi @untrue,

 

Do you have an individual Calendar table? If not, you need to create one first(using CALENDAR Function (DAX)).

 

Then you should be able to use the formula below to create the measure and show it within the Matrix with the date column from the created Calendar table.

Running Total CANX Quantity = 
CALCULATE (
    SUM ( Table1[Qty] ),
    FILTER ( ALL('Date'),'Date'[Date]<=MAX('Date'[Date])&&'Date'[Year]=MAX('Date'[Year]))
)

r1.PNG

 

Here is sample pbix file for your reference.Smiley Happy

 

Regards

View solution in original post

1 REPLY 1
v-ljerr-msft
Employee
Employee

Hi @untrue,

 

Do you have an individual Calendar table? If not, you need to create one first(using CALENDAR Function (DAX)).

 

Then you should be able to use the formula below to create the measure and show it within the Matrix with the date column from the created Calendar table.

Running Total CANX Quantity = 
CALCULATE (
    SUM ( Table1[Qty] ),
    FILTER ( ALL('Date'),'Date'[Date]<=MAX('Date'[Date])&&'Date'[Year]=MAX('Date'[Year]))
)

r1.PNG

 

Here is sample pbix file for your reference.Smiley Happy

 

Regards

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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