select FORMAT( DATEADD(week, @weekNo, DATEADD(WEEK, DATEDIFF(WEEK, '19050101', DATEADD(yy, DATEDIFF(yy, 0, GETDATE()), 0)), '19050101')), 'd.M');
14.4
The start of week that's always Sunday is by Aaron Bertrand at Get first day of week in SQL Server
Here's the train of 'thought'
DECLARE @start_of_year date = (select DATEADD(yy, DATEDIFF(yy, 0, GETDATE()), 0));
--by Aaron Bertrand at https://stackoverflow.com/questions/7168874
DECLARE @sunday_of_the_first_week date = (SELECT DATEADD(WEEK, DATEDIFF(WEEK, '19050101', @start_of_year), '19050101'));
DECLARE @sunday_of_week15 date = (select DATEADD(week, 15-1 , @sunday_of_the_first_week));
DECLARE @sunday_after_week15 date = (select DATEADD(week, 1 , @sunday_of_week15));
select @start_of_year, @sunday_of_the_first_week, @sunday_of_week15, @sunday_after_week15, FORMAT(@sunday_after_week15, 'd.M');
2019-01-01 2018-12-30 2019-04-07 2019-04-14 14.4
Please note that if you have the date it could be:
-- get first Sunday after a date
declare @d date = GetDate();
SELECT FORMAT(DATEADD(WEEK, 1+DATEDIFF(WEEK, '19050101', @d), '19050101'), 'd.M');
10.11