Nov 18, 2002 #1 Whooo Technical User Jul 18, 2002 11 US I have a long integer field that I would like to convert to a short time field. the field is called start and it contains starting times such as 830 or 2300 I have tried several different steps with no luck. THanks for suggestions Cogito ergo sum - I think?
I have a long integer field that I would like to convert to a short time field. the field is called start and it contains starting times such as 830 or 2300 I have tried several different steps with no luck. THanks for suggestions Cogito ergo sum - I think?
Nov 18, 2002 #2 gol4 Technical User Apr 4, 2000 1,174 US Im sure there is an easir way but? ?format(left(cstr(830),len(cstr(830))-2) & ":" & right(cstr(830),2),"hh:nn am/pm" 08:30 am you would use =format(left(cstr(start),len(cstr(start))-2) & ":" & right(cstr(start),2),"hh:nn am/pm" Upvote 0 Downvote
Im sure there is an easir way but? ?format(left(cstr(830),len(cstr(830))-2) & ":" & right(cstr(830),2),"hh:nn am/pm" 08:30 am you would use =format(left(cstr(start),len(cstr(start))-2) & ":" & right(cstr(start),2),"hh:nn am/pm"
Nov 18, 2002 Thread starter #3 Whooo Technical User Jul 18, 2002 11 US thanks for your help it takes care of the formatting, Cogito ergo sum - I think? Upvote 0 Downvote