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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
aaelansr
Frequent Visitor

Optimizing a column calculation

Hi, I have a dataset thats has 11m rows and I am trying to add a column to run a sumX that will then be used in a different column but this calcualation keeps running out of memory. The calculation won't even run on a third of the dataset.

 

sumX (
            FILTER (
                ALL ( 'Master' ),
                Master[Observe] <= _CurrentYear
                    && Master[Observe] > _MinYear
                    
&& _Asset =Master[Building-Asset] 
            ),
            ([Amount to be Depreciated]*Master[Percentage]*Master[Period of Depreciation])/Master[Total Number of Months]
        ))
 
Are there ways to optimize or rewrite this calculation to reduce the memory usage and have it work?
Thank you!
2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

@aaelansr Try something like this:

 

VAR _Table = 
  SELECTCOLUMNS(
    FILTER( 
      'Master', 
      [Observe] <= _CurrentYear && [Observer] > _MinYear && [Building-Asset] = _Asset
    ),
    "Amount to be Depreciated", [Amount to be Depreciated],
    "Percentage", [Percentage],
    "Period of Depreciation", [Period of Depreciation],
    "Total Number of Months", [Total Number of Months]
  )
VAR _Return = 
  SUMX( 
    _Table, 
    DIVIDE( 
      [Amount to be Depreciated] * [Percentage] * [Period of Depreciation], 
      [Total Number of Months] 
    )
  )
RETURN
  _Return

 

Another trick you can do is to utilize SUMMARIZE. SUMMARIZE can make things crazy fast.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler Great! That worked beautifully and enabled me to process more than twice as many rows, but still didn't get me all the way. Can you help me with what this would look like using SUMMERIZE? Would SUMMERIZE also use up less memory?

 

Thank you!

ER

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

Top Kudoed Authors