Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hey Everyone,
I have 2 essentially identical measures that give the cumulative total of a bank account's balance based on all of the transactions as of that day. The formula is as follows:
Hi @query_lord_1 ,
You may try SUMX function instead of SUM function. In general, when working with large data sets, the SUMX function is more efficient than the SUM function because it computes row by row instead of aggregating the data first.
Running Total Base Amount =
SUMX (
FILTER (
ALL ( VW_KPI_BANK_TRANSACTION ),
( VW_KPI_BANK_TRANSACTION[Bank Balance Transaction Date Filter] )
<= MAX ( VW_KPI_BANK_TRANSACTION[Bank Balance Transaction Date Filter] )
),
VW_KPI_BANK_TRANSACTION[Base Amount]
)
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This does not fix my problem. I've tried consolidating the rows (prev 1.5m) down to just after a certain date and only using a total for each day rather than haveing all individual transactions by usng SUMMARIZE to group them by that criteria in a different table. I am now down to 50k rows, but still takes too long to load
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 |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |