Dec 18, 2019 02:46 AM
I have created a table that we record the time it takes us to carry out specific tasks for clients.
I have created a subsequent view for each client and shared with them a private link so they can always see what tasks we are carrying out and how long it takes.
However, on the subsequent grid view, I would like a filter to show only the work undertaken this billing period. e.g. from the 1st of the month to today’s date. Is this possible?
At the moment I have a filter that is: Date “is on or after” + “exact date” + “1st Dec”
However, I have to manually change that date each month. is there another option that would work rather manually changing it each month? Any ideas would be appreciated.
Dec 18, 2019 12:52 PM
Hi @Alan_Mclaverty - try this:
The formula field is:
IF(Date >= DATETIME_PARSE(DATETIME_FORMAT(TODAY(), 'YYYY-MM-01')), 1, 0)
This shows “1” if the Date field is >= to 1st of “this month” and “0” otherwise. Each month, the 1st of the month “moves forward”, so this month this will evaluate to 1st Dec, next month, 1st Jan and so on. Now you can set up your filter to be where this field is “1”. If you don’t want to see this field, just hide it - it will still be available to your filter.
JB
May 26, 2023 10:00 AM
How do you downvote a "solution"?