Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×
Hi @Michael Catmur -- Welcome to the Atlassian Community!
For a question like this, context is important for the community to help. Please post the following:
Until we see those...
Are you using the built-in Start Date and End Date fields, or did you create additional custom fields with the same names?
What are the types of your fields: text, date, or date / time?
Kind regards,
Bill
Hi, thanks for the feedback:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
moved on a little now.. have managed to get a custom field StartDateTime_Concatenated (issue.customfield_11578) as a string using:
{{issue.customfield_11124.format("yyyy-MM-dd").concat("T").concat(issue.customfield_11248).concat("Z")}}
this is storing values like "2025-08-21T10:10:10Z" in a string field.
Now i need to convert that ISO datetime into a proper datetime value. I tried these: but get no value populated and no error message from the automation.
Any suggestions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
While this won't solve your issue, it will help with what you are trying to do.
Change your statement to:
{{#Debug}}{{issue.customfield_11124.concat("T").concat(issue.customfield_11248)}}{{/}}
Then post the output here. If you get an error, post each piece separately so that we can see your data
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, for that. I tried it, but unfortunately get no extra info in the audit log
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.