My goal is to sort my data by timestamp, but I can’t figure it out…
I tried doing that:
SELECT(Quote[Title], in([Timestamp],SORT(SELECT(Quote[Timestamp], isnotblank([Title] = [_THISROW].[Title])), false))).
I thought that using sort() like that would change the list and put it in order but it doesn’t. It is the same as if I did Quote[Title]. I was told to use ORDERBY() but even with it I can’t figure it out.
Because if it is the case, it is not working. I put the formula in the virtual column, and then did “[Ordered Quotes][Title]” in the suggested values of Title and I end up with nothing in the app.
Open the App formula expression and try the Test button. Does it produce the results you’d expect? It should be a list of key column values of the rows of the Quote table that have the same Title value, in Timestamp order.