How to change the number 1122008 to 1/12/2008?
F Fred Smith Feb 29, 2008 #2 Probably the best is: =date(mod(a1,10000),mod(int(a1/10000),2),day(int(a1/1000000))) This will handle the case where you have two digit dates. Regards Fred
Probably the best is: =date(mod(a1,10000),mod(int(a1/10000),2),day(int(a1/1000000))) This will handle the case where you have two digit dates. Regards Fred
D Dave Peterson Feb 29, 2008 #4 This worked for me with my USA date settings (mdy): =--TEXT(A1,"00\/00\/0000") and formatted as a date
This worked for me with my USA date settings (mdy): =--TEXT(A1,"00\/00\/0000") and formatted as a date
H Happy One Mar 1, 2008 #5 Yes, it works. Thank you, Dave Peterson said: This worked for me with my USA date settings (mdy): =--TEXT(A1,"00\/00\/0000") and formatted as a date Click to expand...
Yes, it works. Thank you, Dave Peterson said: This worked for me with my USA date settings (mdy): =--TEXT(A1,"00\/00\/0000") and formatted as a date Click to expand...