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. Fi...
  • Ashish_Mathur's avatar
    8 years ago

    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.