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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Jorge1986
Regular Visitor

Error in a measure using Earlier

Hi, 

I have a table called factVentas with lots of data, I need a dynamic report of paretto 80 20 by dates. The issue is that I have an error in making an accumulated sum within a measure.

 

Something like this.

Imagen1.jpg

where $SumValue and $Total1 are measured with the following formulas:

 

$SumValue = SUM (factVentas[VENTA NETA] )

 

$Total1 = SUMX(ALLSELECTED(factVentas), factVentas[VENTA NETA])

 

 Now, what is needed is to accumulate the value of $SumValue row by row, and I do it in the following way:

Imagen2.jpg

 

$VentasAcumuladas = SUMX(FILTER(factVentas, EARLIER(factVentas[$SumValue],1)<=factVentas[$SumValue]),factVentas[$SumValue])

The error says:  EARLIER/EARLIEST refers to an earlier row context which doesn't exist.

This formula works well on a column, but I have this error as a measure. Any help in this case would be greatly appreciated. Greetings.

 

2 ACCEPTED SOLUTIONS
v-yulgu-msft
Employee
Employee

Hi @Jorge1986,

 

EARLIER/EARLIEST function can be used in calculated column only , but not supported within a measure.

 

In your scenario, please first create a calculated column in 'facyVentas':

Rank col =
RANKX (
    ALL ( factVentas ),
    CALCULATE (
        SUM ( factVentas[VENTA NETA] ),
        ALLEXCEPT ( factVentas, factVentas[Category] )
    ),
    ,
    DESC,
    DENSE
)

Then, create a measure to return accumulated sum:

$VentasAcumuladas =
CALCULATE (
    SUM ( factVentas[VENTA NETA] ),
    FILTER (
        ALL ( factVentas ),
        factVentas[Rank col] <= MAX ( factVentas[Rank col] )
    )
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Dear @v-yulgu-msft, His contribution was vital to reach the solution, for my case I had to make small modifications and in that way make him work dynamically. Thank you very much, enormous support, enormous brain ... Greetings from Ecuador.

View solution in original post

2 REPLIES 2
v-yulgu-msft
Employee
Employee

Hi @Jorge1986,

 

EARLIER/EARLIEST function can be used in calculated column only , but not supported within a measure.

 

In your scenario, please first create a calculated column in 'facyVentas':

Rank col =
RANKX (
    ALL ( factVentas ),
    CALCULATE (
        SUM ( factVentas[VENTA NETA] ),
        ALLEXCEPT ( factVentas, factVentas[Category] )
    ),
    ,
    DESC,
    DENSE
)

Then, create a measure to return accumulated sum:

$VentasAcumuladas =
CALCULATE (
    SUM ( factVentas[VENTA NETA] ),
    FILTER (
        ALL ( factVentas ),
        factVentas[Rank col] <= MAX ( factVentas[Rank col] )
    )
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Dear @v-yulgu-msft, His contribution was vital to reach the solution, for my case I had to make small modifications and in that way make him work dynamically. Thank you very much, enormous support, enormous brain ... Greetings from Ecuador.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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