Thanks to all, this worked for me, and with slight modification I was able to
calculate the entire spreadsheet. Thanks again!
"VBA Noob" wrote:
One way
In B1
=RIGHT(A1,2)&"/"&MID(A1,3,2)&"/"&LEFT(A1,2)
In C1
=TEXT(B1,"mm/dd/yy")
or just this in B1
=MID(A1,3,2)&"/"&LEFT(A1,2)&"/"&RIGHT(A1,2)
VBA Noob
--
VBA Noob
------------------------------------------------------------------------
VBA Noob's Profile: http://www.excelforum.com/member.php...o&userid=33833
View this thread: http://www.excelforum.com/showthread...hreadid=565805