Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am having issues doing the normal sorting desc.
I have this date field, where the '-' is an actual value we need to display as this denotes that this user is in queue. When I try to sort by desc, I expected to see latest date values at the top but it is not changing accordingly. Any ideas on this behavior?
Hi @1600eads ,
It's normal when you're applying a descending sort on a column with a symbol. Two solutions :
Try it and tell us if it works.
Regards.
Try this
LOAD
If([Date Field] = '-', Null(), Date#([Date Field], 'DD/MM/YYYY')) AS Date_Sorted,
[Date Field];
Use this Date_Sorted field in your sorting options