Forum Discussion
Calculated column with DateAdd
- 7 years ago
Hi,
Like Dateadd doen't work for you, if you want to add 2 years to Factuurdatum, try this formula:
Dateaddyear = DATE( YEAR( ACKStudies[Factuurdatum] ) + 2 ; MONTH( ACKStudies[Factuurdatum] ) ; DAY( ACKStudies[Factuurdatum] ) )
You also think to do it in M instead.
Regards,
- 7 years ago
hi, RemiAnthonise
You can combine your formula with luxpbi's formula as below:
Dateadd = DATE( YEAR( ACKStudies[Factuurdatum] ) + (1-WEEKDAY(ACKStudies[Factuurdatum],2)) , MONTH( ACKStudies[Factuurdatum] ) , DAY( ACKStudies[Factuurdatum] ) )
Result:
Best Regards,
Lin
Hi luxpbi
For now I want to add 2 or 4 years to the TransDate. But I see I didn't translate my .pbix from Dutch to English. I'm sorry. In my previous post I've mentioned Transdate, in my file this is called factuurdatum.
Like I said, I want to add 2 or 4 years to this date. This will depend on another field so I'll create an If. This won't be a problem, I assume, but I need to get the DateAdd working first.
Hi,
Like Dateadd doen't work for you, if you want to add 2 years to Factuurdatum, try this formula:
Dateaddyear = DATE( YEAR( ACKStudies[Factuurdatum] ) + 2 ; MONTH( ACKStudies[Factuurdatum] ) ; DAY( ACKStudies[Factuurdatum] ) )
You also think to do it in M instead.
Regards,
- Anonymous5 years agoNot applicable
You can always add X years to a year number, but you can't do that with MM or DD (what's the 13th month ?). So the question remains: how do you create a calculated-column that is 1month later than "myDate" column ?
- Anonymous2 years agoNot applicable
You may run into the error that the day has not the correct value (eg. your original date is on day 31 and the +x months results in february) you can change the last part to
Dateaddyear = DATE( YEAR( ACKStudies[Factuurdatum] ) + 2 ; MONTH( ACKStudies[Factuurdatum] ) ; 1 + DAY( ACKStudies[Factuurdatum] ) )
In case anyone runs into this error, I just ran into it and couldn't figure it out for a good 20 min so hope it helps someone