I have users in the US and in EU and we are bound to read a date wrong very soon.
Or rather language (locale).
No, it is not possible.
Date and time formats are global settings that apply to the entire Jira system.
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.
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.
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 could specify ISO 8601 format, i.e., yyyy-MM-dd :-)
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Improve user experience across Jira with global settings
Learn how to set up and configure a Jira site, manage Jira permissions, and configure Jira apps and integrations.
Learning Path
Streamline projects across Jira with shared configurations
Build Jira work items with reusable configurations called schemes, and reduce administrative work with automation.
Learning Path
Become an effective Jira software project admin
Set up software projects and configure tools and agile boards to meet your team's needs.