Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.

×
Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Date field compared with today's date

Ozan Topkaya July 21, 2023

Hello Team

I want to compare my Date Field "Start-Termin" with today  Date. But the operator == is not working.

Start-Termin: 21.07.2023


issue.get("Start-Termin") == today -> Result: false

issue.get("Start-Termin") >= today -> Result: true

Arbeitsablaufübergang Condition hinzufügen - JIRA Software_2023-07-21_09-42-19.png

Thank you
Ozan

2 answers

1 vote
Mohamed Benziane
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 21, 2023

Hi,

Try to log/print the today date and the customfield value, may be they have two different format

0 votes
Ozan Topkaya July 21, 2023

Thanks Mohamed. I have the solution:

issue.get("customfield_13301").format("dd.MM.yyyy") == today.format("dd.MM.yyyy") 
OR
issue.get("customfield_13301").format("dd.MM.yyyy") == new Date().format("dd.MM.yyyy")

Suggest an answer

Log in or Sign up to answer