Hi all,
I currently have a manual filter like so that I have to keep changing every week:
[StartDate] >= "2023-01-01" AND
[StartDate] <= "2023-11-13"
What I want to id make this filter a bit more dynamic meaning instead, the second condition should always be the Monday of the current week so instead of me having to manually change it i was hoping to put some logic behind it so that it can do dynamically itself. The first part will never change but the second condition will go to the current week i.e for next week manually it would be:
[StartDate] >= "2023-01-01" AND
[StartDate] <= "2023-11-20"
I've tried various approaches with the DateTime function but no dice yet any help would be greatly appreciated