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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Insufficient memory using Earlier

Hi everyone.

 

So I have this sample data.

 

Table 'Sales'

diego_rodas_1-1684256362880.png

 

Rank and Running Sales are calculated columns using the following formulas.

Rank = RANKX( Sales , Sales[Sales] )
Running Sales = CALCULATE( SUM( Sales[Sales] ) , ALL( Sales ) , Sales[Rank] <= EARLIER( Sales[Rank] ) )
 
This works without a problem for small samples, but I'm working with a real Table of approximately 100k rows.
I'm assuming the need for an excessive ammount of processing comes from the EARLIER function, is there any alternative to obtain the same result with large sample sizes. Or what alternatives could work?
 
Thanks in advance.
1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@Anonymous Couple things to try:

Running Sales Column = 
  VAR __Rank = [Rank]
  VAR __Result = 
    CALCULATE( 
      SUM( Sales[Sales] ) , ALL( Sales ) , Sales[Rank] <= __Rank
    )
RETURN
  __Result


Running Sales Colum 2 = 
  VAR __Rank = [Rank]
  VAR __Result = 
    SUMX( 
      FILTER( ALL( Sales ) , Sales[Rank] <= __Rank),
      [Sales]
    )
RETURN
  __Result


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...

View solution in original post

3 REPLIES 3
Greg_Deckler
Community Champion
Community Champion

@Anonymous Couple things to try:

Running Sales Column = 
  VAR __Rank = [Rank]
  VAR __Result = 
    CALCULATE( 
      SUM( Sales[Sales] ) , ALL( Sales ) , Sales[Rank] <= __Rank
    )
RETURN
  __Result


Running Sales Colum 2 = 
  VAR __Rank = [Rank]
  VAR __Result = 
    SUMX( 
      FILTER( ALL( Sales ) , Sales[Rank] <= __Rank),
      [Sales]
    )
RETURN
  __Result


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...
Anonymous
Not applicable

Thanks! @Greg_Deckler Second option (with SUMX) worked like a charm, the others did not? Any idea why?

@Anonymous CALCULATE isn't really all that great with single table data models.



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...

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.