In our current Jira setup (Jira 8.13.10), that I cannot influence btw, I need to find issues that changed to a specific status since yesterday for a board filter.
I came up with this JQL
status in (Closed, Done) AND status was not in (Closed, Done) BEFORE startOfDay(-1d)
which did not give the result I expected. Running this query in a quick filter on a Jira board with 4 different projects returns the issues closed since yesterday for 3 out of 4 projects and if I want to somewhat achieve my desired outcome, I have to slightly modify the JQL to
status in (Closed, Done) AND status was not in (Closed, Done) BEFORE startOfDay(-28h)
Is there some magic per-project setting that defines startOfDay or am I missing something obvious here?