Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Hi Community,
I am trying to write DAX on following examples (as shown below):
Based on value of "Date" (like 02/20/2021, 01/10/2021), I would like to create column value like "Next Month First Day", "Current Month First Day", "2 Month..", "4 Month.." etc.
I think creating Column is what I needed now, but if there is a way to create Measure, I will use later.
Thanks.
Solved! Go to Solution.
Hi:
If your matrix has month as column, then this would work as a measure:
Hi Justin:
Anoter variation you might like is:
=NEXTDAY(LASTDATE(Dates[Date]))
It's less code and works if you are set up by month. Just FYI. Bill
Hi:
If your matrix has month as column, then this would work as a measure:
Hi:
NP.
I got this now in column:
Current Month First Day1 = EOMONTH(CALENDAR[Date] ,-1)+1
2 Month Ago First Day1 = EOMONTH(CALENDAR[Date] ,-3)+1
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
User | Count |
---|---|
21 | |
21 | |
21 | |
13 | |
12 |
User | Count |
---|---|
43 | |
28 | |
25 | |
23 | |
22 |