I have carried out a bulk upload in JIRA specifying start and end dates
CSV file date format: dd/mm/yyyy
JIRA date format: dd/mm/yyyy
When the issues are imported to JIRA the dates are incorrect:
Start date should be: 28/02/2024 but is showing as 28/01/2024
Due date should be: 15/03/2024 but is showing as 15/01/2024
Hi @Jas Aujla
Jira is a Java based application, as such it's using the SimpleDateFormat in order to parse out dates. In your example, telling Jira that the date format is using mm - that is the problem here. To Jira, the mm does not represent the month, but rather the minutes of a timestamp value. Instead try to change the format of the date to dd/MM/yyyy and then perform the import once more.
In this instance, case-sensitivity is important for how those values are being parsed into Jira. Even if you did not intend to store the specific hour/minute, on the back end, when Jira is saving that date and time value into the database, it will store it with an hour and minute value as well.
Thank you so much I updated the date format as stated in your reply and the dates are coming through as expected. Appreciate you providing a solution :)
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.