Seeking for your help. I'm trying to sort a Date array to descending order but to no avail.
Here is the snippet of my code:
Dim sortValue as Variant
Dim sortValueResult as Variant
Dim r1 as String
SortValue = entry.Columnvalues(1)
' The values are (0) 19/5/2018 and (1) 26/5/2018
r1 = Join(sortValue, ";")
sortValueResult = Evaluate ( {@Sort("} & r1 & {";[DESCENDING])})
`
I'm getting 19/5/2018;26/5/2018
26/5/2018 must come first before 19/5/2018.
Can anybody help me?
Thank you.