Hi,
I'm trying to create a filter subscription for reminding due date (custom field, field type=Date Time Picker), but it doesn't work.
I have a similar filter subscription with a another custom field and it works perfectly, only difference is in field date, this one is Date Picker.
I use following filter:
project = Projektid AND assignee = currentUser() AND "Esitamise tähtaeg[Time stamp]" = 7d (this one doesn't work)
project = Projektid AND assignee = currentUser() AND "Projekti tähtaeg[Date]" = 14d
(this one works correctly)
Permissions and subscription details are identical.
Could some suggest what's the problem?
Does it really depend on field type or there is something else?
thanking in advance
Hi Riina,
You can't use = with the Time stamp one because it would try to make the value equal to an exact time as well as the date, which it cannot do. You will need to use something like >= or <= (or maybe even just < or > ).
Yes, thank you, I tried this one:
project = Projektid AND assignee = currentUser() AND "Esitamise tähtaeg[Time stamp]" >= startofday(7) AND "Esitamise tähtaeg[Time stamp]"<= endofday(7)
and it seems that it works :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Riina Kivi ,
I can see the 2 dates don't have the same format. One is a "Time Stamp" and the other is a "Date".
Can you check if this works :
project = Projektid AND assignee = currentUser() AND "Esitamise tähtaeg[Time stamp]" < startOfDay("-7d")
Best regards,
Kris
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.