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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Anonymous
Not applicable

last period value not calculating correctly when rolled-up

Hi all,


In the table below i have the total closed volume by day, and the volume Mvmt is the difference in volume compared to the previouse day.

bokchoyy_4-1690290370187.png

 

it works fine on a daily level, however when rolled up into a weekly level the result is wrong. for exmaple i expect the difference between the weeks starting on 20/07/2023 and 13/07/2023 to be -11143.

how can i write my [Volume mvmt] measure in a way that would allow produce the correct result when rolled up.

Thanks

 



1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

I modify the measure of Volume Mvmt, the function is showed below: 

Volume Mvmt = 
IF(
    ISINSCOPE('Table'[Date]) = TRUE(),
    SUM('Table'[Closed Volume]) - CALCULATE(SUM('Table'[Closed Volume]),FILTER(ALLSELECTED('Table'),[Date]=MAX([Date])-1)),
    IF(
        ISINSCOPE('Table'[WeekStartThursday]) = TRUE(),
        CALCULATE(SUM('Table'[Closed Volume]),FILTER(ALLSELECTED('Table'),[WeekStartThursday]=MAX('Table'[WeekStartThursday])+7)) - SUM('Table'[Closed Volume])
    )
)

Description of the code:
            The two if statements help us to distinguish two different levels of the table.

            ISINSCOPE('Table'[Date]) = TRUE() and  ISINSCOPE('Table'[WeekStartThursday]) = TRUE() each is a Boolean function identifies date or week layer.

            Calculate function gives us the final result.

 

Here is the outcome:9.png

 

                                                                                                                                                         

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.           

View solution in original post

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

I modify the measure of Volume Mvmt, the function is showed below: 

Volume Mvmt = 
IF(
    ISINSCOPE('Table'[Date]) = TRUE(),
    SUM('Table'[Closed Volume]) - CALCULATE(SUM('Table'[Closed Volume]),FILTER(ALLSELECTED('Table'),[Date]=MAX([Date])-1)),
    IF(
        ISINSCOPE('Table'[WeekStartThursday]) = TRUE(),
        CALCULATE(SUM('Table'[Closed Volume]),FILTER(ALLSELECTED('Table'),[WeekStartThursday]=MAX('Table'[WeekStartThursday])+7)) - SUM('Table'[Closed Volume])
    )
)

Description of the code:
            The two if statements help us to distinguish two different levels of the table.

            ISINSCOPE('Table'[Date]) = TRUE() and  ISINSCOPE('Table'[WeekStartThursday]) = TRUE() each is a Boolean function identifies date or week layer.

            Calculate function gives us the final result.

 

Here is the outcome:9.png

 

                                                                                                                                                         

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.           

Anonymous
Not applicable

Thank you Stephen, the ISINSCOPE fucntion was exactly what i needed.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.