Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Convert mm/dd/yyyy to mmddyy

I am pulling data out of a student information system in a txt format, then
open it in Excel to format each field as necessary to submit to a testing
center for data purposes. The birthdate comes out as (for example) as
7/23/1996; once it's opened in Excel I use the Format Cells function to
change it to 072396 per the testing center's parameters. When I validate the
spreadsheet, the value changes to 35269. What do I need to do differently to
have the value remain 072396 after validation?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Convert mm/dd/yyyy to mmddyy

Hi,

In excel dates are numbers and the number 35269 is 23 July 1996 so
formatting this number as a date should get you to where you want to be.

Mike

"Annette" wrote:

I am pulling data out of a student information system in a txt format, then
open it in Excel to format each field as necessary to submit to a testing
center for data purposes. The birthdate comes out as (for example) as
7/23/1996; once it's opened in Excel I use the Format Cells function to
change it to 072396 per the testing center's parameters. When I validate the
spreadsheet, the value changes to 35269. What do I need to do differently to
have the value remain 072396 after validation?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Convert mm/dd/yyyy to mmddyy

When I do that, it appears as 072396 in the cell but 7/23/96 in the formula
bar. When I validate it, it becomes 35269 again.

"Mike H" wrote:

Hi,

In excel dates are numbers and the number 35269 is 23 July 1996 so
formatting this number as a date should get you to where you want to be.

Mike

"Annette" wrote:

I am pulling data out of a student information system in a txt format, then
open it in Excel to format each field as necessary to submit to a testing
center for data purposes. The birthdate comes out as (for example) as
7/23/1996; once it's opened in Excel I use the Format Cells function to
change it to 072396 per the testing center's parameters. When I validate the
spreadsheet, the value changes to 35269. What do I need to do differently to
have the value remain 072396 after validation?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Convert mm/dd/yyyy to mmddyy

Annette,

It will display in the cell precisely how you tell it to. so 7/23/96 will
show in the formula bar but if you format as mmddyy you will se 072396 in the
cell.

Pick the standard date format of mm/dd/yy and you will see the slashes in
the cell

Mike

"Annette" wrote:

When I do that, it appears as 072396 in the cell but 7/23/96 in the formula
bar. When I validate it, it becomes 35269 again.

"Mike H" wrote:

Hi,

In excel dates are numbers and the number 35269 is 23 July 1996 so
formatting this number as a date should get you to where you want to be.

Mike

"Annette" wrote:

I am pulling data out of a student information system in a txt format, then
open it in Excel to format each field as necessary to submit to a testing
center for data purposes. The birthdate comes out as (for example) as
7/23/1996; once it's opened in Excel I use the Format Cells function to
change it to 072396 per the testing center's parameters. When I validate the
spreadsheet, the value changes to 35269. What do I need to do differently to
have the value remain 072396 after validation?

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Convert mm/dd/yyyy to mmddyy

What does "When I validate it" mean?

--
Biff
Microsoft Excel MVP


"Annette" wrote in message
...
When I do that, it appears as 072396 in the cell but 7/23/96 in the
formula
bar. When I validate it, it becomes 35269 again.

"Mike H" wrote:

Hi,

In excel dates are numbers and the number 35269 is 23 July 1996 so
formatting this number as a date should get you to where you want to be.

Mike

"Annette" wrote:

I am pulling data out of a student information system in a txt format,
then
open it in Excel to format each field as necessary to submit to a
testing
center for data purposes. The birthdate comes out as (for example) as
7/23/1996; once it's opened in Excel I use the Format Cells function to
change it to 072396 per the testing center's parameters. When I
validate the
spreadsheet, the value changes to 35269. What do I need to do
differently to
have the value remain 072396 after validation?





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Convert mm/dd/yyyy to mmddyy

The testing center has a template that I have to use to submit the student
data to them, and each field has to be formatted to their specs. Then, after
I paste the data into the template, there's a button in a custom toolbar that
I click to validate the data, that runs a macro to make sure everything is
formatted the way they want it, and errors are highlighted. As soon as I do
that the dates change to the weird from the time of Jesus format and are
highlighted as errors.

"T. Valko" wrote:

What does "When I validate it" mean?

--
Biff
Microsoft Excel MVP


"Annette" wrote in message
...
When I do that, it appears as 072396 in the cell but 7/23/96 in the
formula
bar. When I validate it, it becomes 35269 again.

"Mike H" wrote:

Hi,

In excel dates are numbers and the number 35269 is 23 July 1996 so
formatting this number as a date should get you to where you want to be.

Mike

"Annette" wrote:

I am pulling data out of a student information system in a txt format,
then
open it in Excel to format each field as necessary to submit to a
testing
center for data purposes. The birthdate comes out as (for example) as
7/23/1996; once it's opened in Excel I use the Format Cells function to
change it to 072396 per the testing center's parameters. When I
validate the
spreadsheet, the value changes to 35269. What do I need to do
differently to
have the value remain 072396 after validation?




  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,722
Default Convert mm/dd/yyyy to mmddyy

Since your transferring the data to another workbook (which isn't treating
dates the way XL is designed to treat dates) you may need to use one of the
following:

=TEXT(TEXT(A2,"mmddyy"),"000000")
(Which gives you a 6 character text string, but might fit the formatting
template is looking for)

or

=VALUE(TEXT(TEXT(A2,"mmddyy"),"000000"))
(Which gives a 5-6 character number, but you could format the cell to still
display leading zeroes.)

--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Annette" wrote:

The testing center has a template that I have to use to submit the student
data to them, and each field has to be formatted to their specs. Then, after
I paste the data into the template, there's a button in a custom toolbar that
I click to validate the data, that runs a macro to make sure everything is
formatted the way they want it, and errors are highlighted. As soon as I do
that the dates change to the weird from the time of Jesus format and are
highlighted as errors.

"T. Valko" wrote:

What does "When I validate it" mean?

--
Biff
Microsoft Excel MVP


"Annette" wrote in message
...
When I do that, it appears as 072396 in the cell but 7/23/96 in the
formula
bar. When I validate it, it becomes 35269 again.

"Mike H" wrote:

Hi,

In excel dates are numbers and the number 35269 is 23 July 1996 so
formatting this number as a date should get you to where you want to be.

Mike

"Annette" wrote:

I am pulling data out of a student information system in a txt format,
then
open it in Excel to format each field as necessary to submit to a
testing
center for data purposes. The birthdate comes out as (for example) as
7/23/1996; once it's opened in Excel I use the Format Cells function to
change it to 072396 per the testing center's parameters. When I
validate the
spreadsheet, the value changes to 35269. What do I need to do
differently to
have the value remain 072396 after validation?




  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default Convert mm/dd/yyyy to mmddyy

Try this...

=TEXT(A1,"mmddyy")
Copy and Paste Values

Francis Hayes
www.TheExcelAddict.com


On Sep 22, 4:11*pm, Annette wrote:
I am pulling data out of a student information system in a txt format, then
open it in Excel to format each field as necessary to submit to a testing
center for data purposes. *The birthdate comes out as (for example) as
7/23/1996; once it's opened in Excel I use the Format Cells function to
change it to 072396 per the testing center's parameters. *When I validate the
spreadsheet, the value changes to 35269. *What do I need to do differently to
have the value remain 072396 after validation?


  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Convert mm/dd/yyyy to mmddyy

That worked, too! Thank you!!!

"TheExcelAddict" wrote:

Try this...

=TEXT(A1,"mmddyy")
Copy and Paste Values

Francis Hayes
www.TheExcelAddict.com


On Sep 22, 4:11 pm, Annette wrote:
I am pulling data out of a student information system in a txt format, then
open it in Excel to format each field as necessary to submit to a testing
center for data purposes. The birthdate comes out as (for example) as
7/23/1996; once it's opened in Excel I use the Format Cells function to
change it to 072396 per the testing center's parameters. When I validate the
spreadsheet, the value changes to 35269. What do I need to do differently to
have the value remain 072396 after validation?



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
convert Julian date to DD/MM/YYYY Raj Excel Discussion (Misc queries) 8 January 6th 09 08:40 PM
I can't convert from mm/dd/yy to month dd, yyyy dodgers32 Excel Discussion (Misc queries) 2 January 30th 08 08:19 AM
How do I convert a birthdate format from yyyy/mm/dd to mm/dd/yyyy Amy Ann Excel Worksheet Functions 3 December 13th 07 08:07 PM
convert date mm/dd/yyyy to dd/mm/yyyy maryj Excel Worksheet Functions 2 March 20th 07 07:38 PM
Convert 010105 mmddyy text to 01/01/06 supersonicf111 Excel Discussion (Misc queries) 10 January 2nd 06 01:56 AM


All times are GMT +1. The time now is 11:02 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"