Excel/Access date format issues Nov01 '04
Tell me...
How can Excel and Access not recognize this:
Monday, November 1, 2004
... as being the same thing as this:
November 1, 2004
???
For example, in Excel – if you enter today’s full date into a cell, and try to format that cell to display the date in a different format, it doesn’t understand.
BUT... as soon as you take out the day of the week (Monday), the cell can then be formatted to display the date however you like.
My problem is... I have an old database of blog entries, with a terribly inefficient "date" column, that stores the full date, with the day of the week included – as in the first example above.
I’ve exported my SQL database, as an Excel file, and now I want to format the generic "date" column to display the date like this:
11/01/2004
The option to display the date like that is obviously available in Excel, except Excel doesn’t realize that the date I entered, is INDEED A DATE.
It treats it as plain text, and you can’t change that unless you manually remove each day of the week, from the date, so that it appears just like this:
November 1, 2004
THEN it understands you.
Aggravating.
Categories: Software ![]()
Add Feedback (view all)
Leave feedback
Yes, I would have to somehow use a function that removes the day - or, in this case, the first entire word after the first comma: Wedn ... Read more.
Oh wait... I just figured it out! Text to Columns! Under the Data menu, there is an option called "Text To Columns..." ... Read more.
DOH! I shoulda thought of that! Text to columns is sweet, ain't it?? ... Read more.
A1 = "Monday, January 1, 2004" Put this formula in anywhere: =VALUE(RIGHT(A1,LEN(A1)-SEARCH(",",A1)-1)) The output will be the ... Read more.
matthom
is published and produced by Matt Thommes - an independent publishing enthusiast, mobile blogger, content creator, informative writer, web developer from a suburb of Chicago.
Never one to conform, Matt intends to promote the effect the web has on our lives, in an effort to intensify, instruct, and clarify all that is happening around us.
Popular Pages
- Fast rounded corners in Photoshop (5895 recent visits)
- PHP – passing variables across pages (2154 recent visits)
- JavaScript set selected on load (1806 recent visits)
- Removing all child nodes from an element (1256 recent visits)
- iPod songs out of order? (1048 recent visits)
- Firefox 3 smart address bar: wildcard search (968 recent visits)
- Britney - Everytime piano tab (903 recent visits)
- MySQL LEFT JOIN syntax (758 recent visits)
- Breathe Me - Sia (678 recent visits)
- Tumblr: how blogging should be (559 recent visits)
Similar Entries
- Find a person’s age in Excel (262 recent visits)
- Excel: Naming Cells and Ranges (47 recent visits)
- Excel project: weekly calendar (304 recent visits)
- Excel text manipulation rocks (275 recent visits)
- Excel absolute cell reference (173 recent visits)
- Outlook and Excel formatting - take it easy! (2 recent visits)
Stats
180 unique visits since August 2008
Recent Referrers (click)
- format date access
- excel format cells so date doesn't show
- format date change when Edit cell excel
- format cell excel date
- cell excel access
- excel text formula format date
- remove date formatting excel
- can't format date cells excel
- change format from text to date excel
- change the date format excel for a column
- format date for access
- format date in access
- format date in access
- access date format
- Access date format
- excel date formats show day
- excel date not displaying #
- access date format
- access format date
- change "date format" excel
How bout this Matt: Do you need the day in there? You say if you remove the day, then it works?? Could you write a function that removes either the ... Read more.