I need to extract and display a date from an order number. The order numbers are XXYYYYDDDAAA with XX being a two letter code for product type, YYYY is the year, DDD is the day of the year with Jan. 1 being 001 and Dec. 31 being 365. The last three characters, AAA are the number of that order for that day.
I can use DATEVALUE like this to pull wha I need:
DATEVALUE(
TONUMBER({FIELD},3 TO 7),
TONUMBER({FIELD},8 TO 10)
)
But how can I convert 001 to read Jan 1st?
Thanks in advance
I can use DATEVALUE like this to pull wha I need:
DATEVALUE(
TONUMBER({FIELD},3 TO 7),
TONUMBER({FIELD},8 TO 10)
)
But how can I convert 001 to read Jan 1st?
Thanks in advance