how do I change the date format

D

Dave Peterson

You can change the format so that the value is kept a date, but is displayed the
way you want.

Or you could use a formula in another cell:

=text(a1,"yyyymmdd")
that will return a string.

or
=--text(a1,"yyyymmdd")
that will return a number.
 
Top