Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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).
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.
Proud to be a Super User!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
10 | |
10 | |
9 | |
7 |
User | Count |
---|---|
17 | |
12 | |
11 | |
11 | |
10 |