I am working on a piece of automation that will set a custom date field when a ticket transitions to a certain status.
The automation would take a number field (Quoted Turnaround Time, in days), add that number of business days to todays date, and set the custom date field.
For example an issue transitioned today with a quoted turnaround time of 10 business days would say today (May 6), plus 10 business days = May 20th.
I've been trying different variations of this automation but can't get it to work
{{now.plusBusinessDays{{Quoted Turnaround}}}}
Any help would be greatly appreciated
Hello @Dan Foster
Correct syntax is:
{{now.plusBusinessDays(Quoted Turnaround)}}
provided "Quoted Turnaround" is the field name..
Please try and let us know. Accept answer if solution works. Thanks!
@Kalyan Sattaluri Thank you for your feedback, I tried that and unfortunately it did not work. I tried replacing the custom field name of "Quoted Turnaround" instead with the "customfield_XXXX" and unfortunately that did not work either.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please add a log statement after your trigger (before your If condition) and log {{Quoted Turnaround}} ... (or the custom field value if you know) so we know the value we are using is correct..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm, is this a number field or a text field.. do you happen know?
Can you please try to log below so we explicitly convert it to number?
{{now.plusBusinessDays(Quoted Turnaround.asNumber)}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kalyan Sattaluri Great find! The field was a text field, not a number field, I corrected to a number field and it's working now. Thank you very much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.