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
daniel_19
New Member

Calculate the measure for the previous analysis week

Hello,

How can I calculate the "Value Begin" measure when it always has the same value as the "Final Value" of the previous week of analysis.

In this example the "Final value" is 80,30,30 for the analysis week 26 Dec to 01 Jan and for categories x,y,z. So the "Value Begin" for the following analysis week (02 Jan to 08 Jan) should be 80,30,30 for category x,y,z.

How to do this in Dax?

I tried with OFFSET

CALCULATE([Final Value],
OFFSET(
-1,
ALLSELECTED(d_calendar[Analyze week]),
GROUPBY(d_calendar[Analyze week]))
)

but doesnt work, returned blank

Capturar.PNG

 

 

 

1 ACCEPTED SOLUTION
daniel_19
New Member

I solved.

 

it is necessary to create a classifier, for using OFFSET in the ORDERBY, I concatenated the year of the end of the week from the column date with the week of the year of the end of the week from the column date and then used offset:

CALCULATE([Final Value],
   OFFSET(
    -1,
        ALLSELECTED(
            'd_Calendar'[Concat(Year-Week(EndofWeek)],
            'd_Calendar'[Week analyze]),
       ORDERBY('d_Calendar'[Concat (Year-Week(EndofWeek)]
              )
)

 

d_calendar below:

 

Capturar.PNG

View solution in original post

1 REPLY 1
daniel_19
New Member

I solved.

 

it is necessary to create a classifier, for using OFFSET in the ORDERBY, I concatenated the year of the end of the week from the column date with the week of the year of the end of the week from the column date and then used offset:

CALCULATE([Final Value],
   OFFSET(
    -1,
        ALLSELECTED(
            'd_Calendar'[Concat(Year-Week(EndofWeek)],
            'd_Calendar'[Week analyze]),
       ORDERBY('d_Calendar'[Concat (Year-Week(EndofWeek)]
              )
)

 

d_calendar below:

 

Capturar.PNG

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.

August 2025 community update carousel

Fabric Community Update - August 2025

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