How do you convert a time() value to a string and not include the colon.
For example, if time() = 13:05:22. I would like to capture it as 1305.
I tried the str(time()), but got an error. I also tried using str(time() format"HHMM"
I am collecting the current time on a form using =time().
I would like to convert a time field to hhmm format using 24 hour GMT (without the colon).
Thank you for your help.