turks67 said:
Is it possible to convert 6.35 to 6:35 and be able to sort that column by
time order?
You can sort numbers like 6.35 just as well as times like
6:35 so that is not a reason to convert them. If the time
field is really a text string, then just sort on an
expression like Val(tf)
If you have some other reason to convert that kind of
number, then use an expression like:
Int(tf) / 24 + (tf - Int(tf)) * 100 / (24*60)
or if your time field is a text field:
TimeValue(Replace(tf, ",", ":"))