Query Problem Displaying Values over 10

zoup

New member
Local time
Today, 06:35
Joined
May 19, 2005
Messages
8
I have times that are converted using a hoursandminutes function.

Times range from HH:MM to D:HH:MM. But it has a problem correctly displaying times that might be 1:00 and 10:00. I want to criteria >"5:00"

Any reason why 10:00 would not show up in this criteria?

Any help greatly appreciated.
 
When comparing times or integers or floating, 5 < 10

When comparing strings, "5" > "10" - because string compares run from left to right character by character and the first inequality defines the sense of the comparison.
 

Users who are viewing this thread

Back
Top Bottom