Jul 9, 2004 #1 ocan Programmer Jun 28, 2004 31 US On a form, in 1 text box, how could I type in: julian date-----(three digit day)(last 2 digits of the year) and in another text box return the date. ie. type in 00104 & have it return 1/1/04. Thanks.
On a form, in 1 text box, how could I type in: julian date-----(three digit day)(last 2 digits of the year) and in another text box return the date. ie. type in 00104 & have it return 1/1/04. Thanks.
Jul 9, 2004 #2 TheAceMan1 Programmer Sep 23, 2003 11,174 US How are ya ocan . . . . . See: http://support.microsoft.com/default.aspx?scid=kb;en-us;162745 See Ya! . . . . . . Upvote 0 Downvote
How are ya ocan . . . . . See: http://support.microsoft.com/default.aspx?scid=kb;en-us;162745 See Ya! . . . . . .
Jul 9, 2004 1 #3 PHV MIS Nov 8, 2002 53,708 FR Something like this ? AnotherTextBox = DateSerial(Right(JulianDate, 2), 1, Left(JulianDate, 3)) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
Something like this ? AnotherTextBox = DateSerial(Right(JulianDate, 2), 1, Left(JulianDate, 3)) Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
Jul 10, 2004 Thread starter #4 ocan Programmer Jun 28, 2004 31 US That works perfect! Upvote 0 Downvote