I have raw dates in a lookup table, similar to this:
Key: Easter24 Value: 2024-03-31
Then I have a custom date picker field, let's call it DPF.
I am trying to check if Easter24 < DPF via an automation rule branch.
- My unsuccessful first attempt:
- If block
- Smart value condition
- {{Dates.get("Easter24")}} less than {{issue.customfield_#####.value}}
- My unsuccessful first attempt:
- If block
- Smart value condition
- {{Dates.get("Easter24").toDate}} less than {{issue.customfield_#####.jiraDateTime}}
- My unsuccessful third attempt - attempted via an audit log:
- Entering this syntax into a log to compare the two dates: [{{Holidays.get("Easter24").toDate}}].isBefore([{{issue.customfield_#####.jiraDateTime}}])
Any ideas on how to compare the two?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.