By Alex Sherwood aka aNotioneer
<aside> 👋 This is a pretty simple formula that's useful if you want to avoid rescheduling recurring events that happen every year / month.
For example if you have a list of birthdays and want to display their date this year.
The formula works whether the date is in the past or the future.
If you have any questions, feel free to add a comment or ask here.
</aside>
Contents:
dateAdd(prop("Original birthday"), year(now()) - year(prop("Original birthday")), "years")
dateAdd(prop("Original payday"), month(now()) - month(prop("Original payday")), "months")
This formula is a combination of the current month & current year formulas.
dateAdd( dateAdd(prop("Original payday"), month(now()) - month(prop("Original payday")), "months"), year(now()) - year(prop("Original payday")), "years")