Forum Discussion
StuartSmith
Power Participant
4 years agoOnly display current month or later {Part II} (example file attached)
I am trying to create a filter that will only show dates that are in or later than the current month. Someone helped me with a column measure to identify if the date is in or later than the current m...
- 4 years ago
You can use
Current Month or Later = IF( 'Dates'[Date] >= DATE( YEAR( TODAY()), MONTH( TODAY()), 1), "Yes", "No")as the column definition
johnt75
Super User
4 years agoYou can use
Current Month or Later = IF( 'Dates'[Date] >= DATE( YEAR( TODAY()), MONTH( TODAY()), 1), "Yes", "No")as the column definition