I have just setup the filter below to only retrieve items for today and tomorrow (which works just fine):
BETWEEN { fn CURDATE() } AND DATEADD(day; 1; GETDATE())
But on Friday I must get Monday's items as well - I am trying to setup an IF statement around this but I am not having any luck at all. Below is an example (that does not work) but I am stumped as to how to write this correctly:
IF DATEPART(WEEKDAY, GETDATE()) IN (6)
THEN BETWEEN { fn CURDATE() } AND DATEADD(day; 3; GETDATE())
ELSE BETWEEN { fn CURDATE() } AND DATEADD(day; 1; GETDATE())
How about:
Note: I am not a fan of using
between
with date/date times. Aaron Bertrand has a nice blog posting explaining this.BETWEEN
is safe for dates, so I am leaving the logic as you seem to have specified it.