Forum Discussion
How to change a date format back to a decimal in excel?
The process has some things in common with unscrambling eggs!
Once you identify that Excel has misread the data input, you can take steps to reverse the process. The day and month can be separated using
DAY(data)
MONTH(data)/10
and then treated as the integer and decimal parts of a number using the appropriate formula
= DAY(data)+MONTH(data)/10
or
= DAY(data)+MONTH(data)/10^LEN(MONTH(data))
the later dealing with months Oct-Dec.
Another solution that could work given computer settings other than those that messed up the data in the first place would be
=--TEXT(data,"d.m")
Thank you PeterBartholomew1 for your reply. This has actually worked. In some cases I needed to do some additional magic, but it would not have worked without your initial input.
Not to mention the burst of laughter brought on by your 'unscrambling eggs' comparison, which is the most precise way to describe this problem.
Thank you again!