rwmill9716
Active Member
- Joined
- May 20, 2006
- Messages
- 467
What is the formula to convert a number like 122114 to 12/21/14 and 13015 to 01/30/15?
Thanks
Ric
Thanks
Ric
What is the formula to convert a number like 122114 to 12/21/14 and 13015 to 01/30/15?
Thanks
Ric
Accounting for the possibility of preceding zeroes....
=(LEFT(B1,LEN(B1)-4)&"/"&MID(B1,LEN(B1)-3,2)&"/"&RIGHT(B1,2))