Calculating MTD, QTD, YTD, Running and Cumulative Total in Power BI

By:   |   Comments (4)   |   Related: > Power BI


Problem

How do I calculate MTD, QTD, YTD and Running Total in Power BI?

Solution

In this tip, I will walk through a method to calculate MTD, QTD, YTD and running total in Power BI. This method is useful in stock calculations and balance sheet calculations.

Calculate Running Total in Excel and Power BI

Running total will provide the total at a given point in time without having to sum the entire sequence each time.

Calculating Running Total in Excel

First let us understand how to calculate the running total in excel with sample data.

We have collected daily web page views of a specific website for our analysis. Now we want to calculate the cumulative total (Running Total). In Excel, the sum formula can be used with absolute and relative references to calculate the running total. Let’s create a new column "Cumulative Total" in column C and update the formula as "=SUM(SB$2:132)"

For the first row, the value of cumulative total is the same as number of views for that day. Now let us copy the formula and apply it to all the rows. As per the screenshot, the cumulative total has been calculated correctly across all the rows. The below screenshot represents the sample data with a running total calculation in Excel.

ExcelCalculation - Description: ExcelCalculation

Calculating Running Total in Power BI using DAX expression

The ideal Power BI data model should have a date table that other tables can reference for analysis. The previous Creating a Date Dimension Table in Power BI  has detailed information on creating the data table in Power BI. The below screen shows the date table and its attributes.

Date Dimension Table - Description: Date Dimension Table

As a first step, I would like to import the Date dimension table created in the previous tip. For convenience purposes, I have created and stored the Date dimension as a Power BI template. This template will be imported into the current Power BI model.

Click on the File > Import > Power BI Template to select the “Date_Dimension” template.

Import From Template - Description: Import From Template

Now select the “Date_Dimension” template to import.

Selecting Template - Description: Selecting Template

Once imported, we can see the Date dimension table as per the screenshot below.

Date Dimension Attributes - Description: Date Dimension Attributes

Let us create a new table in Power BI and key in sample data. This table will store the webpage views for each day. I have created the "Weblog" table with two columns Date and PageViews which is the number of views to store the details. This can be done by clicking “Enter Data” on the Home ribbon.

Enter Data Menu - Description: Enter Data Menu

It will launch a separate window where you can update the column name and enter sample data as mentioned in the screenshot below. The below screenshot confirms that the table has been created with sample data.

Enter Sample Data - Description: Enter Sample Data

Once the table has been created, it can be seen on the data mode as per the screenshot below.

WebLog Table - Description: WebLog Table

It is mandatory to create a relationship between the Weblog table and the Date dimension table on the date column. All the time related functions will work only if the relationship has been defined correctly. The below screenshot represents the relationship between the tables.

Creating Relationship Between Tables - Description: Creating Relationship Between Tables

Calculating MTD in Power BI

Now let us create a new column “MTD” to calculate Month to Date. A new column has been added and the below DAX expression has been used to calculate MTD.

MTD = TOTALMTD(SUM(Weblog[PageViews]),DimDate[Date])
   

Creating MTD Calculated Column - Description: Creating MTD Calculated Column

MTD Calculation Results

The page views of 12th Dec has been added to the 15th Dec to calculate the MTD as at 15th Dec and it has been calculated as 60 (25 + 35). However the 2nd Jan page views has been added to the 1st Jan page views and the MTD has been calculated as 30 (20+10).

Calculating QTD in Power BI

Now let us create a new column “QTD” to calculate Quarter to Date. A new column has been added and the below DAX expression has been used to calculate QTD.

QTD = TOTALQTD(SUM(Weblog[PageViews]),DimDate[Date])
   

Creating QTD  Calculated Column - Description: Creating QTD Calculated Column

QTD Calculation Results

The page views of Jan and Feb have been added to calculate the QTD as at 3rd Feb and it has been calculated as 85. However the April and May views have been added and the QTD has been calculated as 55.

Calculating YTD in Power BI

Now let us create a new column “YTD” to calculate Year to Date. A new column has been added and the below DAX expression has been used to calculate YTD.

YTD = TOTALYTD(SUM(Weblog[PageViews]),DimDate[Date])
   

Creating YTD Calculated Column - Description: Creating YTD Calculated Column

YTD Calculation Results

The page views of Dec 2016 has been added to calculate the YTD as on 15th Dec and it has been calculated as 60. However the Jan, Feb, April and May views have been added and the YTD has been calculated as 140.

Calculating Running Total in Power BI

Now let us create a new measure to calculate the “Running Total”. New measure can be created by clicking on the new measure button on the home ribbon (Data tab).

Creating New Measure - Description: Creating New Measure

We will be using the Calculate function to derive the Running Total.

Calculate Function

The Calculate function will evaluate the given expression based on the context defined by the filters.

Calculate function format:

CALCULATE(<expression>,<filter1>,<filter2>...)
   

The expression used in the first parameter is as same as a measure. The filter expression is a boolean expression. We will be using the calculate function to calculate the Running Total. Now let us add a measure "Cumulative Page Views" and use the formula below.

CumulativeTotal = CALCULATE(Sum(Weblog[PageViews]),FILTER(ALL(DimDate[Date]),DimDate[Date] <= Max(DimDate[Date])))
   

Calculation Details

There are two filter expressions which have been mentioned in the calculate function. This expression returns the list of all the dates that are less than or equal to the last date in the current selection. The filter must be applied to the date columns in the date table. This is the actual date table in the model.

The below screen shot represents the DAX expression for the new measure. As it is a measure, it is not visible in the table view.

Creating Running Total - Description: Creating Running Total

Running Total Calculation Results

We will be creating a small report to validate the Running Total measure. Let us add a new table from the visualization as per the screen shot below.

Creating Data Table - Description: Creating Data Table

Let us add the Columns Date, Page Views, YTD and Running Total to the data table in the visualization as per the screenshot below.

Report With Running Total - Description: Report With Running Total

It is confirmed that the cumulative page views are calculated without year boundaries as per the screenshot above.

Summary

The concept of Cumulative/Running total is simple and it is extremely useful in day to day use. The calculation can also be used to build historical / predicted data analysis models.

Next Steps

Learn more about Power BI in this 3 hour training course.


Click here to start the Power BI course






sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Nat Sundar Nat Sundar is working as an independent SQL BI consultant in the UK with a Bachelors Degree in Engineering.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips



Comments For This Article




Tuesday, June 13, 2023 - 10:27:37 AM - dharmendra Back To Top (91279)
great explaination , no one can explain better then this step wise

Thursday, January 9, 2020 - 11:54:24 AM - Fernanda Barbosa Back To Top (83660)

Hi. I just have Month and year on my data model (for example: 201910;20201...). How could i use YTD, QTD and MAT with this type of data?
Many thanks 


Saturday, June 22, 2019 - 6:08:22 AM - suresh babu aligineni Back To Top (81553)

Hello, Sundar tip is good.  But for cumulative aggregations, we need to add allselected instead of All. As when we use slicers on the report the all function gives wrong aggregations so to take the slicers into consideration we need allselected function. 

Thanks

Suresh babu aligineni


Tuesday, August 28, 2018 - 8:02:58 PM - Kingston Back To Top (77328)

Thanks Nat, this is a very useful tip.

Could you please extend this to a situation where for example two columns are added to the page views list: 1) Server Name and 2) Viewer Country?

How is the DAX expression written to aggregate by these additional fields?

In other words, I'd like to see the running totals by Server Name and Viewer Country as well as by month (or year).















get free sql tips
agree to terms