---
title: "Time of last transition"
canonical: "https://support.appfire.com/space/PSJC/854491173/Time%20of%20last%20transition"
format: markdown
---
> Macro (aura-html)


## Problem

You want to show the time the last transition was made on an issue show it appears in the list of search results or a dashboard.

## Solution

```
string [] changes = fieldHistory(key, "status");

if(size(changes) > 0) {
    date lastChange = changes[size(changes)-2];
    return formatDate(toTimeZone(lastChange, "GMT-5"), "h:mm a");
}
```

Example output: `2:17 PM`