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
adityo
Frequent Visitor

Dax Function to label Date from Date 1- 15, the label is end of month

Hi Power BI Masters

i need DAX to make a date like this, when the date is from 1 - 15, the date will be end of month this date, but when 16 -31 the date will be the next 15 in the next month, for example like this :

Date
1 March 2023 --> 31 March 2023

3 March 2023 --> 31 March 2023

10 March 2023 --> 31 March 2023

14 March 2023 --> 31 March 2023

15 March 2023 --> 31 March 2023

16 March 2023 --> 15 April 2023

20 March 2023 --> 15 April 2023
30 March 2023 --> 15 April 2023

31 March 2023 --> 15 April 2023

1 April 2023--> 30 April 2023

1 ACCEPTED SOLUTION
ValtteriN
Super User
Super User

Hi,

Here is one way to do this:


15 or EOMONTH =
var _date = MAX('Calendar'[Date])
 var _year = YEAR(MAX('Calendar'[Date]))
 var _month = MONTH(MAX('Calendar'[Date]))
 return
IF(DAY(_date)<16, EOMONTH(_date,0),DATE(_year,_month+1,15))

End result:

ValtteriN_0-1679300454205.png

 

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/







Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
aditya0125
Resolver I
Resolver I

Try this oneScreenshot (36).png

ValtteriN
Super User
Super User

Hi,

Here is one way to do this:


15 or EOMONTH =
var _date = MAX('Calendar'[Date])
 var _year = YEAR(MAX('Calendar'[Date]))
 var _month = MONTH(MAX('Calendar'[Date]))
 return
IF(DAY(_date)<16, EOMONTH(_date,0),DATE(_year,_month+1,15))

End result:

ValtteriN_0-1679300454205.png

 

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/







Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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