Forum Discussion
unclejemima
9 years agoPost Patron
IsCurrentMonth DAX formula?
I've got a formula for IsCurrentWeek, IsLastWeek, IsLast7Days, IsToday...but I don't have a forumla for IsCurrentMonth.
Can anyone help out with a DAX formula for this?
Thanks!
Found it!
IsCurrentMonth = IF ( YEAR ( Table1[Create Date] ) = YEAR ( TODAY () ) && MONTH ( Table1[Create Date] ) = MONTH ( TODAY () ), "Yes", "No" )
1 Reply
- unclejemimaPost Patron
Found it!
IsCurrentMonth = IF ( YEAR ( Table1[Create Date] ) = YEAR ( TODAY () ) && MONTH ( Table1[Create Date] ) = MONTH ( TODAY () ), "Yes", "No" )