Forum Discussion
armchairexpert
Helper III
3 years agoDATEADD -6 Months Measure
Hi, I need to create a measure to store the beginning of -6 months from today for comparrision. If it is 14th June 2023 today, then it should give me 1st of December 2022. Can someone please help...
- 3 years ago
armchairexpert Try:
Measure = VAR __EOMonth = EOMONTH( TODAY(), -6 ) VAR __Return = DATE( YEAR( __EOMonth ), MONTH( __EOMonth ), 1 ) RETURN __Return
Greg_Deckler
Community Champion
3 years agoarmchairexpert Try:
Measure =
VAR __EOMonth = EOMONTH( TODAY(), -6 )
VAR __Return = DATE( YEAR( __EOMonth ), MONTH( __EOMonth ), 1 )
RETURN
__Return- armchairexpert3 years ago
Helper III