Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a dataset that contains a list of of user entries. I need to display the most recent value in the entry column in a text object.
How would I fetch that single entry and how would I display it in a KPI/Text object.
Any help is appreciated
/Casper
You can use FirstSortedValue function and use this expression
=FirstSortedValue(column, -DateColumn)
You can use FirstSortedValue function and use this expression
=FirstSortedValue(column, -DateColumn)
This works, thanks a lot!