Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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.