Created time
fields have the same filter options as other date-type fields. If you want to set up a view filter as described, use a formula field with outputs like the following:
MONTH({Created time})
or
IF(DATETIME_FORMAT({Created time}, 'YYYYMM') = DATETIME_FORMAT(TODAY(), 'YYYYMM'), "current month")
For “date is between” you could use two “is on or before” view filters.
Created time
fields have the same filter options as other date-type fields. If you want to set up a view filter as described, use a formula field with outputs like the following:
MONTH({Created time})
or
IF(DATETIME_FORMAT({Created time}, 'YYYYMM') = DATETIME_FORMAT(TODAY(), 'YYYYMM'), "current month")
For “date is between” you could use two “is on or before” view filters.
Thanks for the suggestion! I haven’t played much with the formula fields, and didn’t know about the MONTH feature, so that is very helpful!
In terms of the second suggestion about the “is on or before” view filter, I didn’t realize that the “is” was a drop-down filter you could adjust in addition to the other view filter fields. That pretty much solves all of my questions.
Thank you!!