0
Order by desc
I have this in a function
let s := this;
let ntxt := "";
for d in (select Orm where Dato > today() - 365 and Heste = s) order by Dato do
ntxt := ntxt + d.Dato + " " + d.Type + " - "
end
now i want it sortet by date descending.. I know SQL and i just add DESC.. Order by dato DESC do.. But it is not working in ninox... Any hints?
Henrik
2 replies
-
Maybe this will work: order by number(Dato)*-1
Steven
-
Tanks.. Worked !
Content aside
- 3 yrs agoLast active
- 2Replies
- 230Views