routine to convert to date format

A

adropinabucket

I have a worksheet that contains dates.

The dates have been entered in general format.

For the month of November (2004) they are, (for example)

Sun 7, Mon 8, Tues 9, Wed 10, Thurs 11, Fri 12, Sat 13.



I would like to convert these text entries to the appropriate date number.



So Sun 7 would become 38298, formatted as ddd d.
 
M

Myrna Larson

In a helper column, assuming the 1st date is in A2, you would use a formula
like this

=DATE(2004,11,MID(A2,FIND(" ",A2)+1,2))
 
A

adropinabucket

Many thanks for your help.



Myrna Larson said:
In a helper column, assuming the 1st date is in A2, you would use a
formula
like this

=DATE(2004,11,MID(A2,FIND(" ",A2)+1,2))
 

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

Top