I need a little help returning two values from the ISO week.
I have a list of over 1000 dates in a 'DD-MM-YYYY' format.
Using;
SELECT DATEPART(ISO_WEEK, SUBMITTED_DATE) AS ISOWK
FROM [DATE_TABLE].SUBMITTED_DATE
I can successfully returns the ISO week for the dates listed.
What I need now is a way to use the ISO number to return the first and last dates of that ISO week , ideally in two separate columns.
Is this possible?
Thanks