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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
AnetaK
Helper V
Helper V

Running Total (based on project size)

Hello,

I need help in creating a Running Total measure, but what is important - it should be based on projects, not dates.
Usually, Running Total is created by date, we start in January and increase e.g. the sum of sales with each month.

Now I have to create this sum, but based on the size of the project (% share of costs in the total). First we take the largest project, then add a smaller and smaller one to it... The table has to show the 10 largest projects.

The table is also to be filtered by various filters, such as the date, so the project position cannot be set hard.
If, for example, each project was permanently assigned a rank (in PQ or a calculated column in DAX), then the filter will not work on this rank. The largest project in January may already be finalized in February and may not appear in the data from February at all.
Therefore, everything has to be dynamic.

 

Below is a table showing how it should look like.
Anyone have any idea how to come to this?

(P.S. Cost and Cost% are DAX measures).

 

AnetaK_0-1612260702072.png

 

1 REPLY 1
DataInsights
Super User
Super User

@AnetaK,

 

Try this solution.

 

1. Create measures:

 

Total Cost = SUM ( FactProject[Cost] )

Cost % = 
VAR vNumerator = [Total Cost]
VAR vDenominator =
    CALCULATE ( [Total Cost], ALLSELECTED () )
VAR vResult =
    DIVIDE ( vNumerator, vDenominator )
RETURN
    vResult

Running Total = 
VAR vTopNumProjects = 10
--get all projects and their Cost % per the slicers/filters
VAR vBaseTable =
    ADDCOLUMNS (
        SUMMARIZE ( ALLSELECTED ( FactProject ), FactProject[Project] ),
        "@Cost%", [Cost %]
    )
--get the top N projects
VAR vTopProjects =
    TOPN ( vTopNumProjects, vBaseTable, [@Cost%] )
--add rank to the top N projects
VAR vRankedProjects =
    ADDCOLUMNS ( vTopProjects, "@Rank", RANKX ( vTopProjects, [@Cost%],, DESC ) )
--get the current project in the visual
VAR vCurrentProject =
    MAX ( FactProject[Project] )
--get the row in vRankedProjects for the current project
VAR vCurrentProjectRow =
    FILTER ( vRankedProjects, FactProject[Project] = vCurrentProject )
--get the rank for the current project
VAR vCurrentRank =
    MAXX ( vCurrentProjectRow, [@Rank] )
--get the rows that have a rank <= the current project's rank
VAR vTargetRows =
    FILTER ( vRankedProjects, [@Rank] <= vCurrentRank )
VAR vResult =
    IF ( HASONEVALUE ( FactProject[Project] ), SUMX ( vTargetRows, [@Cost%] ), BLANK() )
RETURN
    vResult

 

2. Create visual. Set the following visual filter: [Running Total] > 0. Sort the visual by [Running Total], ascending.

 

DataInsights_0-1612723819345.png

 

DataInsights_2-1612723852355.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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