Forum Discussion
Dax support
- 7 years ago
Date(Year([Event Date]),Month([Event Date]),1)
This is calculating the first day of the month of the EventDate in date format. For example, if the EventDate is 12-Jun-2019, then this formula is converting it to 1-Jun-2019
Date(Year(Today()),Month(Today()),1)
This formula is checking today's date and then calculating the first day of the month (same as logic above)
So essentially I am first converting the EventDate and Today's date to first of the month and then applied the condition you had mentioned.
FORMAT([Event Date],"MMM-YYYY"
This formula is converting the date into the required format.
Hope this answers your query.
Thanks,
Vivek
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Please try this:
(This is considering that you are comparing the EventDate with current date, as it is not clear from your orignal query)
This is perfect & great, can you also explain me the working of below 2 conditions you have used?
- vivran227 years agoCommunity Champion
Date(Year([Event Date]),Month([Event Date]),1)
This is calculating the first day of the month of the EventDate in date format. For example, if the EventDate is 12-Jun-2019, then this formula is converting it to 1-Jun-2019
Date(Year(Today()),Month(Today()),1)
This formula is checking today's date and then calculating the first day of the month (same as logic above)
So essentially I am first converting the EventDate and Today's date to first of the month and then applied the condition you had mentioned.
FORMAT([Event Date],"MMM-YYYY"
This formula is converting the date into the required format.
Hope this answers your query.
Thanks,
Vivek
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.