---
title: "Transition past due issues"
canonical: "https://support.appfire.com/space/PSJ/15481258/Transition%20past%20due%20issues"
format: markdown
---
> Macro (aura-html)

 

Call this script on a set schedule. It will transition issues that are past due.

```
string [] keys = selectIssues("project = EX AND duedate is not  EMPTY AND duedate < startOfDay()");
for(string k in keys) {
    autotransition(61, k, true, true, true);
}
```