I am trying to import resolved date which is shown in the screen shot below.
I have set the default format as follows.
Still getting the error as:-
The external importer is a bit tricky.
I've seen the import work with any datetime format using the SimpleDateFormat: https://docs.oracle.com/javase/1.5.0/docs/api/java/text/SimpleDateFormat.html
However it always says:
"...completed with warnings..."
"Unable to parse datetime..."
The only datetime format that I have seen it accept and not throw any errors with, is this:
M/d/yyyy H:mm:ss
I have spent waaaaaaaaaay too much time on this trying different formats. Was about to give up but @Drew Kerrigan , your comment was the key. Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Aravind,
You're so close... Note in the example that you should be using forward slashes instead of dashes:
18/Sep/19
That should do the trick.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Importing dates are tricky. I've had GREAT success by formatting my csv to be MM/dd/yy.
When I import, I basically have 12/12/21 and this works really well for me.
I struggled a lot to finally find a format that actually stuck.
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.
I ran into the same issue. I had to update my CSV and my Jira settings to match MM/dd/yy. 12/20/21. This worked well for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Alex, thanks for the solution.
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.