How to sort a report per hour

I have the following report, that works, however the hours are not sorted.

[ORDERS:1, 1, 1, 1]
>Time|Order Count|Total|Percent
{REPORT ORDER DETAILS:FT([O.Time.asc],'hh'),O.Id.Count,O.Total.Sum,O.Total.Percent}
>Total:|{REPORT ORDER DETAILS:O.Id.Count,O.Total.Sum,O.Total.Percent}

Result:

imagen

For next update I added sorting expressions by FT([O.Time],'hh').asc

2 Likes