changing date value to date

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I would be very greatful if anyone can give me a solution to my problem. My
problem is: what is the formula to convert the date vale (for example:39124)
to date ( for example: 11-Feb-07)?
 
Just format it as a date.

A1 = 39124

Select A1

Goto Format>Cells>Number tab>Date

Select the format style of your choice

If you want to have the serial number as is in one cell and then have the
date appear in another cell, then:

A1 = 39124

Formula in B1: =A1

Then format as described above

Another, but longer way:

=DATE(YEAR(A1),MONTH(A1),DAY(A1))

Biff
 
Sat, 21 Apr 2007 22:26:01 -0700 from sadat
I would be very greatful if anyone can give me a solution to my problem. My
problem is: what is the formula to convert the date vale (for example:39124)
to date ( for example: 11-Feb-07)?

There is no formula, because there is nothing to convert.

Select Format | Cells | Date.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top