You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I have users in the US and in EU and we are bound to read a date wrong very soon.
I grew up a US military brat, using Day / Month / Year, and I am 100% familiar with your concern.
Atlassian uses SimpleDateFormat, so the easiest way to limit confusion on your platform is probably to pick something like "2/Mar/2023" instead of either 03/02/23 or 02/03/23.
No, it is not possible.
Date and time formats are global settings that apply to the entire Jira system.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Each user can go to their account (icon in upper right), select Manage Account->Account Preferences and set time zone relevant to their location.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Or rather language (locale).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alex, date format applies globally on your whole Jira instance, but you can choose a format which is not confusing. For example: 23/Jan/23 9:23 AM (dd/MMM/yy h:mm a), or 23/Jan/2023 9:23 AM (dd/MMM/yyyy h:mm a).
Hopefully everyone knows the current date, and your users will be familiar with the new format, soon.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could specify ISO 8601 format, i.e., yyyy-MM-dd :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's too bad that Jira can't look at a user's machine preferences to find their preferred date format like every other app on the Mac (hint, hint).
If you're using Structures, you're in luck! You can parse the dates down to their components and reassemble them.
//yields yyyy-mm-dd
concat(
year(created),
"-",
if(number(month(created))<10,
concat("0",month(created)),
month(created),
"-",
if(number(day(created))<10,
concat("0",day(created)),
day(created)
)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Jira Administrator
Configure Jira Software, Jira Core, or Jira Service Management, including global settings, permissions, and schemes.
Managing Jira Projects Cloud
Learn to create and configure company-managed projects in Jira Software and partner effectively with Jira Admins.
Managing Permissions in Jira Cloud
Sharpen your skills at configuring and troubleshooting permissions in Jira Cloud with this free course.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.