Changing dates

M

MICHALK

How do you change a date to text and return a string such as mmddyy to
replace 01/01/10? In other words remove the slashes but keep the same
numbers.
 
D

Dave Peterson

=text(a1,"mmddyy")
if A1 contained the date

Or just format the cell using a custom format:
mmddyy
 
Top