Wiating time base on ticket description Hi everyone, I am trying to automate the change of the Active Directory title for employees when HR sends us an email. I was able to extract the date in ISO format from the ticket description as well as several other pieces of information using this logic: {{ ticket.description | strip_html | replace: " ", " " | split: "Date du changement:" | last | strip | split: " " | first }} (This allows us to extract the date and return: “YYYY-MM-DD”) Subsequently, I added an expression builder that looks at today's date and the remaining days before the change date: diffInDays(today('America/Toronto'), '{{E3.result}}') Here, {{E3.result}} represents the date in ISO format obtained in the previous step. Then, I configured a condition specifying that if the number of days is EQUAL “0”, then continue; otherwise, the employee's title needs to be changed now, as this means the change is prior to today's date. Again, everything works without any issues. My problem arises with a change that needs to be