---
title: "Last modified by scripted field"
canonical: "https://support.appfire.com/space/PSJC/852820317/Last%20modified%20by%20scripted%20field"
format: markdown
---
> Macro (aura-html)


## Problem

You would like to display the name of the last person to update an issue in a custom field.

## Solution

```
JFieldChange [] changes = lastIssueChanges(key);
return userKeyToDisplayName(changes[size(changes)-1].user);
```