Roman
1
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
Jason
2
Hi @Roman
If I have understood you correctly does:
@All of Created on.sort((a, b) => b - a)[0]
work for you?
2 Likes
Roman
3
Nice! That works like a charm. Thanks
2 Likes