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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Calculate the difference between values not blank

Hi Guys,
I need to calculate the difference between column (3)

Last value not blank this month  - Last value not blank before this moth

 

Calculo Odometro - Copia.png

2 REPLIES 2
Nathaniel_C
Super User
Super User

Hi @Anonymous 
Try this: The code looks longer than it is.  Merely duplicate for each different month, in this case Jan and February. Will point out the high non blank value in January is not the last date, whereas the last nonblank value in February is the last date in February, but it is not the highest value, which is correct.
Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel
lno feb.PNG

 




LastNonBlank Value of Feb - Jan =
VAR LastNonBlankDateJanuary =
    CALCULATE (
        MAX ( myTable[Date] ),
        FILTER (
            ALL ( myTable ),
            myTable[Date] <= DATE ( 2019, 1, 31 )
                && myTable[Date] >= DATE ( 2019, 1, 1 )
                && myTable[Value] <> 0
        )
    )
VAR _January =
    CALCULATE (
        SUM ( myTable[Value] ),
        FILTER ( ALL ( myTable ), myTable[Date] = LastNonBlankDateJanuary )
    )
VAR LastNonBlankDateFebruary =
    CALCULATE (
        MAX ( myTable[Date] ),
        FILTER (
            ALL ( myTable ),
            myTable[Date] <= DATE ( 2019, 2, 28 )
                && myTable[Date] >= DATE ( 2019, 2, 1 )
                && myTable[Value] <> 0
        )
    )
VAR _February =
    CALCULATE (
        SUM ( myTable[Value] ),
        FILTER ( ALL ( myTable ), myTable[Date] = LastNonBlankDateFebruary )
    )
RETURN
    _February - _January


 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Anonymous
Not applicable

@Nathaniel_C thanks  for the help, I need a flexible solution.
I developed the solution below, but this calculate is very slow:
Do you know a form of optimizer?

Delta KM com VAR = 
//------------------------------------------------------------------------
SUMX(
    VALUES(Diesel[Chave]);
 //-------------------Primeira Quilomatragem----------------------------------------------
VAR Primeiro_KM = 
    CALCULATE(
        if(
        CALCULATE(
        max(Diesel[Quilometragem ou Horas]);
        FILTER(
            all(Diesel);
            Diesel[Data da Transacao] < min(Diesel[Data da Transacao])&&
            Diesel[Quilometragem ou Horas] <> BLANK()&&
            Diesel[Inventario] = max(Diesel[Inventario])
        )
    ) =BLANK();
        CALCULATE(
            max(Diesel[Quilometragem ou Horas]);
            FILTER(
                all(Diesel);
                Diesel[Data da Transacao] <= min(Diesel[Data da Transacao])&&
                Diesel[Quilometragem ou Horas] <> BLANK()&&
                Diesel[Inventario] = max(Diesel[Inventario])
            )
        );
        CALCULATE(
            max(Diesel[Quilometragem ou Horas]);
            FILTER(
                all(Diesel);
                Diesel[Data da Transacao] < min(Diesel[Data da Transacao])&&
                Diesel[Quilometragem ou Horas] <> BLANK()&&
                Diesel[Inventario] = max(Diesel[Inventario])
            )
        )
    )
)
//------------------------Ultima Quilomatragem----------------------------------------------------
    VAR Ultimo_KM = 
    CALCULATE(
        CALCULATE(
        max(Diesel[Quilometragem ou Horas]);

            LASTNONBLANK(
                Diesel[Data da Transacao];
                CALCULATE(max(Diesel[Quilometragem ou Horas])
                )
            )   
)
    )
    return
 //------------------------------------------------------------------------\

    Ultimo_KM-Primeiro_KM
)

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors