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
Anonymous
Not applicable

R12 Calculation Error

Hello everyone, I am trying to calculate R12 for past 5 years. I am filtering my data based on Date lookup table. The max or latest date is 01/07/2021(dd/mm/yyyy). When I choose this latest date(July) from slicer I was expecting to see 01/08/2020. However calculation returned just blank. However when I choose  June calculation is correct. Is there anyone to help to solve the issue?

 

Month.PNGYear.PNGMonth2.PNGYear2.PNG

 

The Dax Code:

R12 IND =
Var SelectedMaxDate = MAX ('Date Lookup'[Date])
Var MinDate =
CALCULATE (
MIN ( 'Date Lookup'[Date]),
FILTER (
ALL ('Date Lookup'),
DATEADD (
'Date Lookup'[Date],
1,
YEAR
) > SelectedMaxDate
)
)
Return
MinDate
 
Thanks in advance!
1 ACCEPTED SOLUTION
selimovd
Super User
Super User

Hey @Anonymous ,

 

I'm not really sure if the approach makes sense as DATEADD just changes the dates in the column. I think what you are looking for is the function DATESINPERIOD. Try the following approach:

R12 IND =
VAR SelectedMaxDate = MAX( 'Date Lookup'[Date] )
VAR MinDate =
    CALCULATE(
        MIN( 'Date Lookup'[Date] ),
        DATESINPERIOD(
            'Date Lookup'[Date],
            SelectedMaxDate,
            -1,
            YEAR
        )
    )
RETURN
    MinDate

  

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

View solution in original post

2 REPLIES 2
selimovd
Super User
Super User

Hey @Anonymous ,

 

I'm not really sure if the approach makes sense as DATEADD just changes the dates in the column. I think what you are looking for is the function DATESINPERIOD. Try the following approach:

R12 IND =
VAR SelectedMaxDate = MAX( 'Date Lookup'[Date] )
VAR MinDate =
    CALCULATE(
        MIN( 'Date Lookup'[Date] ),
        DATESINPERIOD(
            'Date Lookup'[Date],
            SelectedMaxDate,
            -1,
            YEAR
        )
    )
RETURN
    MinDate

  

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 
Anonymous
Not applicable

Hello Denis, thanks a lot for your solution! It worked 😊

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.