Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
JustinDoh1
Post Prodigy
Post Prodigy

How to express Next Month First Day, Prev. Month First Day etc. (Time intelligence question)

Hi Community,

 

I am trying to write DAX on following examples (as shown below):

JustinDoh1_0-1645208438429.png

 

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.

 

 

 

 

 

1 ACCEPTED SOLUTION
Whitewater100
Solution Sage
Solution Sage

Hi:

If your matrix has month as column, then this would work as a measure:

Next Month First Day =
VAR dayone = CALCULATE(Max(Dates[Date]))
return
CALCULATE(dayone, DATEADD(Dates[Date],1,MONTH))+1

 

View solution in original post

5 REPLIES 5
Whitewater100
Solution Sage
Solution Sage

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

Whitewater100
Solution Sage
Solution Sage

Hi:

If your matrix has month as column, then this would work as a measure:

Next Month First Day =
VAR dayone = CALCULATE(Max(Dates[Date]))
return
CALCULATE(dayone, DATEADD(Dates[Date],1,MONTH))+1

 

@Whitewater100 

Thank you so much! How do we express in Column by chance?

Hi:

NP. 

Begin Next Month =
VAR currdate = Dates[Date]
return
EOMONTH(currdate,0)+1
 
If it works well, please accept as solution. Thanks!

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors