Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |