I have a date stored as text yymmdd (e.g. 060707 would be 7/7/06). I would like to convert this format to JUL0706. I have tried Ucase(format("060707","MMM")) which yields MAR.
What am I missing here. I figure if I can convert the 07 to JUL I can use the left() and right() functions to take...