Good Morning.
You can either nest the DateAdd to add a year and subtract a day
- OR -DateAdd("yyyy", 1, Date("d", -1, [JoinDate])) AS [NewDate]
Take the number of days in a normal year and subtract 1.
Take care.DateAdd("d", 364, [JoinDate]) AS [NewDate]
Scott