Forum Discussion

philtab's avatar
philtab
Frequent Visitor
8 years ago
Solved

Add 3 Month to MIN Date

Hi all,

 

I have an issue with my DAX formula. 

I want to compare to dates in a matrix using a dates filter (Quarters and Year):

 I almost solved this by using the following two formulas.

First date (e.g. Q1 2017):

Min_Value = CALCULATE(SUM('Totals'[Value])|FILTER(ALL('Date'[Date])|'Date'[Date] <= MIN('Date'[Date])))

Second date (e.g. Q1 2018):

Max_Value = CALCULATE(SUM('Totals'[Value])|DATESYTD('Date'[Date]))

 

 

But with the formula for the first date I have the issue that I get the values for the beginning of the quarter but I want to have the values for the end of the quarter. 

If I add 90 days to the MIN Date I get roughly what I am looking for but of course this isn't accurate:

Min_Value = CALCULATE(SUM('Totals'[Value])|FILTER(ALL('Date'[Date])|'Date'[Date] <= MIN('Date'[Date])+90))

 

Is there a way that I can add 3 month to the MIN date which would give me the accurate result?

 

Many thanks in advance.

 

Philip

  • Hi,

     

    Not sure of what you want but try this

     

    Min_value = CALCULATE(SUM('Totals'[Value]),DATESBETWEEN('Date'[Date],EDATE(MIN('Date'[Date]),3),EDATE(MIN('Date'[Date]),3)))

     

    Hope this helps.

4 Replies

  • Hi,

     

    Not sure of what you want but try this

     

    Min_value = CALCULATE(SUM('Totals'[Value]),DATESBETWEEN('Date'[Date],EDATE(MIN('Date'[Date]),3),EDATE(MIN('Date'[Date]),3)))

     

    Hope this helps.