declare @dt as datetime = '1/20/2025'
while DATEPART(dw, @dt) <> 6 BEGIN SET @dt = @dt + 1 END
select @dt