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.
Hello guys so i have a table with columns:
Date ,duedate, sale
The date column has normal dates like 8/16/2022
I want to add 30 days of end of each month we currently are in on the due date
So table should be
Date duedate sale
8/16/2022 9/30/2022 x
8/17/2022 9/30/2022 y
Duedate is like the end of august is august 31 last day of the month so if i add 30 days i get 30 September hence why due date should show 9/30/2022
I know the m code is Date.AddDays(#date(2022,8,30), 30) but i want it to always be the end of month so when i enter September, the due date should be 30 days of end of September which is 10/29/2022
i tried Date.AddDays(Date.EndOfMonth(DateTime.LocalNow(),30)) but kept giving me an error
Solved! Go to Solution.
Hi @Anonymous ,
DAX:
=
EOMONTH ( TODAY(), 0 ) + 30
M query:
= DateTime.Date(
Date.AddDays(
Date.EndOfMonth(DateTime.LocalNow()),30
)
)
You miss a ) befor 30.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
DAX:
=
EOMONTH ( TODAY(), 0 ) + 30
M query:
= DateTime.Date(
Date.AddDays(
Date.EndOfMonth(DateTime.LocalNow()),30
)
)
You miss a ) befor 30.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
12 | |
9 | |
6 | |
6 | |
6 |
User | Count |
---|---|
25 | |
14 | |
14 | |
9 | |
7 |