[✅ Solution] Calculate Calculate the most recent creation date of all related entries

How can I display the most recent creation date from all connected elements in a calculation field?

This is what I tried:

moment('@Maximum von Start', 'DD.MM.YYYY').lang('de').fromNow()

// https://momentjs.com/

Unfortunately, this does not work

Hi @Roman

If I have understood you correctly does:

@All of Created on.sort((a, b) => b - a)[0]

work for you?

2 Likes

Nice! That works like a charm. Thanks :pray:

2 Likes