The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I want to create a custom date column with displays 15th of every month and the end of the month based on a date column.
Any day less than or equal to 15th should display 15th and any day less than or equal to the End of the month should display end of month.
For example-->
Given Date Output Date
10/9/2022 10/15/2022
10/11/2022 10/15/2022
10/17/2022 10/31/2022
10/20/2022 10/31/2022
11/7/2022 11/15/2022
11/17/2022 11/30/2022
Solved! Go to Solution.
please try this
Supposing your table named Data, try to add a new column with the code below:
Output Date =
IF(
DAY(Data[Given Date])<=15,
DATE(YEAE(Data[Given Date]), MONTH(Data[Given Date]),15),
ENDOFMONTH(Data[Given Date])
)
Hi by using this formula I get all the dates with 15. But the endofmonth returns the same date as in the given column.
please try this
User | Count |
---|---|
11 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
23 | |
14 | |
13 | |
10 | |
8 |