Hi @Neil ,
Please try:
CREATE TABLE #test(dateSt date)
INSERT INTO #test values('20210204'),('20210214'),('20210226')
SELECT dateSt,dateadd(week,12,dateSt) as DateEd
FROM #test
Output:
dateSt DateEd
2021-02-04 2021-04-29
2021-02-14 2021-05-09
2021-02-26 2021-05-21
If you have any question, please feel free to let me know.
Regards
Echo
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.