Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to do something very simple but it is not working.
I have a time column and I want to see if that time is greater than 6pm. if I simple do an if(mytimecolumn > maketime(18,0,0), etc, that returns false even when it is true, like when the time is noon.
I tried to use Time# for that but even than does not work.
What is the best approach to do this?
hi, how about this?
if(hour(mytimecolumn) >= 18, true(), false())
Rgds