Rolling 12 Financial Periods

Hi @ells,

The Financial Period is just another Attribute of Dates
See if this is helpful.

Sales 12M = 
VAR myStart =  MAX ( Dates[Date] )
VAR myEnd = EDATE ( myStart + 1, -12 )
VAR Result =
    CALCULATE(
        [Total Sales],
        FILTER( 
            ALL( Dates ),
            Dates[Date] >= myStart 
            && Dates[Date] <= myEnd 
        )
    )
RETURN

Result
1 Like

Thanks,
I thought EDATE would do calendar months? This really needs to be financial and I have to use the data dimension provided :frowning:

So Easy in SQL
End date I have
Start date would be
a = get the financial Year Month Number for the end date
b = a-100 (so if its 202010 then it becomes 201910
c= add on to the Financial Year Month (watching year boundaries) so we get 201911
start date = first day of 201911

I am sure there must be an easier way. Juggling three issues at once is not good for my small brain :frowning:

Many Thanks
E

Can you post a copy/sample of your Dates table?

Unfortunatelly I am not allowed to post it. There are a lot of things I am not happy about one of which is the naming convention. When I say Financial Months they are really Periods so do not follow the calendar Year.

I have the following columns of Interest
Month Year Number (financial Month Year Number)
Month Number (financial Month Number)
Month Offset ( financial offset from Cuurrent Month)

Hope this helps.
E

I’m sure you can disclose what type of financial calendar you are using?
13 Period, 445, 454, 544 ???

I am not sure. It looks like it is linked to start or end on a particular day. Very difficult to tell .
Best Guess would be Period end on last friday of the month.

Sorry I know this is going to be as awkward as possible.
E

Ok then last question can you give me one start date for a new period.
You know what I’ll make something up :+1:

So my Current End date is 27 July 2020
30 May 2020 would be the start of a period

Could you not use the Month Offset?
Thanks
E

I was thinking along the lines of
VAr EndDate = [End date]
Var EndDateCurrentYearOffset= (need to get the CurrentYearOffset for EndDate)
Var StartDateCurrentYearOffset= VarEndDateCurrentYearOffset -11
Var StartDate = Min(dim Caleddar[Date] where Year Month Offset = StartDateCurrentYearOffset

From there I can calculate Sales with Dates Between start date and end date
?
Many Thanks
E

Without seeing your Dates table I’m hoping the Month Offset is a non-repeating sequential number…
Can you give this a go

Sales 12P = 
VAR myOffset = SELECTEDVALUE( Dates[MonthOffset] ) 
VAR ListMonths = CALCULATETABLE( VALUES( Dates[MonthOffset]), FILTER( ALL( Dates ), Dates[MonthOffset] >= myOffset -11 && Dates[MonthOffset] <= myOffset ))
RETURN

    CALCULATE( [Total Sales],
        FILTER( ALL( Dates ),
            Dates[MonthOffset] IN ListMonths
        )
    )

I hope this is helpful

@ells,

Here is one I use in all my financial models. This example is TTM for Cost of Sales:

Total Cost of Sales TTM =
CALCULATE (
    [Total Cost of Sales],
    DATESINPERIOD ( 'Date'[Date], MAX ( 'Date'[Date] ), -12, MONTH )
) 

I also have a date slicer at the top of my slide. Forgot to mention that.


Thanks
Jarrett

@JarrettM
Many Thanks but its the financial periods that are causing the issue. I think what you have assumes the 12 Periods span 12 Months?
Cheers
E

That looks like its worked :slight_smile:
Many Thanks
E

It’s great to know that you are making progress with your query @ells. Please don’t forget if your question has been answered within the forum it is important to mark your thread as ‘solved’. Also, we’ve recently launched the Enterprise DNA Forum User Experience Survey, please feel free to answer it and give your insights on how we can further improve the Support forum. Thanks!

Hi there

I am trying to create a current R12 and prior R12.

I have one table with dates 01.07.2019 to 30.06.2021 which covers the periods.

I have the reports I want in excel and trying to recreate them in Power BI - this is useful as I can sense check them.

This formula is not giving me the correct answer for the current R12 period.

Sales 12P =
VAR myOffset = SELECTEDVALUE( Dates[MonthOffset] )
VAR ListMonths = CALCULATETABLE( VALUES( Dates[MonthOffset]), FILTER( ALL( Dates ), Dates[MonthOffset] >= myOffset -11 && Dates[MonthOffset] <= myOffset ))
RETURN

CALCULATE( [Total Sales],
    FILTER( ALL( Dates ),
        Dates[MonthOffset] IN ListMonths
    )
)

It appears to be giving me a lower total than I would expect from my excel reports. How can this be resolved and then how would I use the offset to create the prior year R12.

I have copied in your massive date table to my model.

I am really finding the shift from Excel to POWER BI incredibly difficult but feel it is really worth the pain

Hi there,
Please open a new topic as this posting is already closed. People of the forum may not see your posting if you don’t open a new posting.

thanks
Keith

How do i open a new topic please, Keith?

move mouse over the blue circle bottom right hand corner and it will turn into New topic and click on and then create it from there. Please remember to delete the other postings.

I hope this helps.
keith

thanks, Keith - maybe that dot needs a new topic text in it or something clearer?

well you can make that suggestion in a new topic too. I have no control over that :slight_smile: