Perhaps try using formula fields instead to filter off of? You'd have a formula field that outputs the last day of the current day's month, and another field that checks whether "Date Required" is before that:

DATEADD(
DATEADD(
DATETIME_PARSE(
DATETIME_FORMAT(
TODAY(),
"MM YYYY"
),
"MM YYYY"
),
1,
'month'
),
-1,
'day'
)
{Date Required} <= {Last day of this month}
Perhaps try using formula fields instead to filter off of? You'd have a formula field that outputs the last day of the current day's month, and another field that checks whether "Date Required" is before that:

DATEADD(
DATEADD(
DATETIME_PARSE(
DATETIME_FORMAT(
TODAY(),
"MM YYYY"
),
"MM YYYY"
),
1,
'month'
),
-1,
'day'
)
{Date Required} <= {Last day of this month}
Thanks that'll work. Strange that there is no drop down field which would allow you to select 'End of Current Month' instead of having to specify what this exact date is

You can use the condition that the date is within this calendar month to get records for the current month, including up to the end of the current month. To also get dates before the current month, use "or" with the condition that the date is before today.

In general, I recommend avoiding formula fields that use TODAY() because that formula can be resource intensive.
You can use the condition that the date is within this calendar month to get records for the current month, including up to the end of the current month. To also get dates before the current month, use "or" with the condition that the date is before today.

In general, I recommend avoiding formula fields that use TODAY() because that formula can be resource intensive.
My filter does not allow me to use 'Or'? it only allows 'And'?
