Hi @nnnnneil - good suggestion.
A possible workaround for you in the interim:
Create a field “Current Week” using the formula:
DATETIME_FORMAT(TODAY(), 'WW')
Then create a field which is the week that the record was added:
DATETIME_FORMAT({Record Added}, 'WW')
Take one from the other (“Week Diff”). You can now filter where the “Week Diff” = 1. You could come up with similar fields for month, year etc and hide in your view to reduce the clutter.
JB
Hi @nnnnneil - good suggestion.
A possible workaround for you in the interim:

Create a field “Current Week” using the formula:
DATETIME_FORMAT(TODAY(), 'WW')
Then create a field which is the week that the record was added:
DATETIME_FORMAT({Record Added}, 'WW')
Take one from the other (“Week Diff”). You can now filter where the “Week Diff” = 1. You could come up with similar fields for month, year etc and hide in your view to reduce the clutter.
JB
Hey @JonathanBowen, thanks for the suggestion. I guess i’m trying to keep my fields under control
It also needs This Week, This Month…