I've googled for days and no luck. Trying to Filter either with "Filter In-DB" or a "where clause". Both require sql code but I can't seem to find what works.
I want to filter my data by the first of the current month and the last day of the month 11 months from this month.
SELECT *
FROM abc.123_Resource
WHERE
RESOURCE_DATE BETWEEN "first day of this month" and "last day of month 11 months from now"
Essentially, a year's worth of data based on future dates starting from this month.
I've attached a picture of my most recent attempt out of 200 from "google-ing".
Thanks!!!!