I need to create a new field in my select query which selects the Next first Monday of April if the date is greater than '2003-03-31' is that possible.
For example i have a date 2014-04-21 so I need the calculated date to return as 2015-04-6.
Second example would be 2020-01-13 so the calculated date would need to return 2020-04-6
UPDATED
Data is below:
What I have been attempting is:
CASE
WHEN Date <= '2003-03-31' THEN
'2004-04-5'
WHEN Date > '2003-03-31' THEN
????? (First Monday of the next April)
END AS 'Test1',
This is where I m stuck sorry I was so vague.