Hi - I have a field called CustomerLot which is made up 5 numbers which consist of the first 3 numbers being the day of the year, starting at 001 and the last 2 numbers representing the year (example 08, so 00108 would be January 1, 2008 and 36508 would be December 31, 2008. I need to convert this number back to a regular date. I have looked at the examples given by Microsoft, but they are all geared towards having the yy first then the ddd. I have accomplished it by parsing out the field, first by the year, then by the day and then joining them back (basically, I am reversing the order) and then using a function to create the date, but if anyone has a one-step solution, it would be appreciated.