Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Changing text dates to date serial numbers

I have the following in a spread sheet:
Pay Date
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/11/2007 #VALUE!
the Pay Date is in column A1 and the function is in B2
the function that returns the "#VALUE!" error is "=DATEVALUE(A2)

why do I get an error? I'm using Excel 2003 (11.8146.8132) SP2
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Changing text dates to date serial numbers

DATEVALUE requires that the argument be a *TEXT* representation of a date.
If your dates are true Excel dates then they're NUMBERS.

If you want the date serial number:

=A1

Format as GENERAL or NUMBER

--
Biff
Microsoft Excel MVP


"George" wrote in message
...
I have the following in a spread sheet:
Pay Date
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/11/2007 #VALUE!
the Pay Date is in column A1 and the function is in B2
the function that returns the "#VALUE!" error is "=DATEVALUE(A2)

why do I get an error? I'm using Excel 2003 (11.8146.8132) SP2



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Changing text dates to date serial numbers

When I type =A2 in cell C2, I get 01/05/2007 in cell C2, when I put a '
infront of the 01/05/2007 to force it to be text, I still get the #VALOE!
error

Geo

"T. Valko" wrote:

DATEVALUE requires that the argument be a *TEXT* representation of a date.
If your dates are true Excel dates then they're NUMBERS.

If you want the date serial number:

=A1

Format as GENERAL or NUMBER

--
Biff
Microsoft Excel MVP


"George" wrote in message
...
I have the following in a spread sheet:
Pay Date
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/11/2007 #VALUE!
the Pay Date is in column A1 and the function is in B2
the function that returns the "#VALUE!" error is "=DATEVALUE(A2)

why do I get an error? I'm using Excel 2003 (11.8146.8132) SP2




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Changing text dates to date serial numbers

Not sure why you're wanting to use DATEVALUE.

If I type this into cell A2:

'1/1/2008

=DATEVALUE(A2) returns 39448.

This will do the same thing: =A2+0

If A2 = a true Excel date and all you want is the date serial number (which
is what DATEVALUE returns) this is easier to use:

=A2

And format as GENERAL or NUMBER



--
Biff
Microsoft Excel MVP


"George" wrote in message
...
When I type =A2 in cell C2, I get 01/05/2007 in cell C2, when I put a '
infront of the 01/05/2007 to force it to be text, I still get the #VALOE!
error

Geo

"T. Valko" wrote:

DATEVALUE requires that the argument be a *TEXT* representation of a
date.
If your dates are true Excel dates then they're NUMBERS.

If you want the date serial number:

=A1

Format as GENERAL or NUMBER

--
Biff
Microsoft Excel MVP


"George" wrote in message
...
I have the following in a spread sheet:
Pay Date
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/11/2007 #VALUE!
the Pay Date is in column A1 and the function is in B2
the function that returns the "#VALUE!" error is "=DATEVALUE(A2)

why do I get an error? I'm using Excel 2003 (11.8146.8132) SP2






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 39
Default Changing text dates to date serial numbers

I'm just trying to learn from reading the posts here.

Just like you, I'm wondering what George wants to do with the contents of
cells B2 and down the column. Perhaps if George would tell you, you could
help him better.


"T. Valko" wrote:

Not sure why you're wanting to use DATEVALUE.

If I type this into cell A2:

'1/1/2008

=DATEVALUE(A2) returns 39448.

This will do the same thing: =A2+0

If A2 = a true Excel date and all you want is the date serial number (which
is what DATEVALUE returns) this is easier to use:

=A2

And format as GENERAL or NUMBER



--
Biff
Microsoft Excel MVP


"George" wrote in message
...
When I type =A2 in cell C2, I get 01/05/2007 in cell C2, when I put a '
infront of the 01/05/2007 to force it to be text, I still get the #VALOE!
error

Geo

"T. Valko" wrote:

DATEVALUE requires that the argument be a *TEXT* representation of a
date.
If your dates are true Excel dates then they're NUMBERS.

If you want the date serial number:

=A1

Format as GENERAL or NUMBER

--
Biff
Microsoft Excel MVP


"George" wrote in message
...
I have the following in a spread sheet:
Pay Date
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/11/2007 #VALUE!
the Pay Date is in column A1 and the function is in B2
the function that returns the "#VALUE!" error is "=DATEVALUE(A2)

why do I get an error? I'm using Excel 2003 (11.8146.8132) SP2








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Changing text dates to date serial numbers

I'm ready and willing!

--
Biff
Microsoft Excel MVP


"TRYING" wrote in message
...
I'm just trying to learn from reading the posts here.

Just like you, I'm wondering what George wants to do with the contents of
cells B2 and down the column. Perhaps if George would tell you, you could
help him better.


"T. Valko" wrote:

Not sure why you're wanting to use DATEVALUE.

If I type this into cell A2:

'1/1/2008

=DATEVALUE(A2) returns 39448.

This will do the same thing: =A2+0

If A2 = a true Excel date and all you want is the date serial number
(which
is what DATEVALUE returns) this is easier to use:

=A2

And format as GENERAL or NUMBER



--
Biff
Microsoft Excel MVP


"George" wrote in message
...
When I type =A2 in cell C2, I get 01/05/2007 in cell C2, when I put a '
infront of the 01/05/2007 to force it to be text, I still get the
#VALOE!
error

Geo

"T. Valko" wrote:

DATEVALUE requires that the argument be a *TEXT* representation of a
date.
If your dates are true Excel dates then they're NUMBERS.

If you want the date serial number:

=A1

Format as GENERAL or NUMBER

--
Biff
Microsoft Excel MVP


"George" wrote in message
...
I have the following in a spread sheet:
Pay Date
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/11/2007 #VALUE!
the Pay Date is in column A1 and the function is in B2
the function that returns the "#VALUE!" error is "=DATEVALUE(A2)

why do I get an error? I'm using Excel 2003 (11.8146.8132) SP2








  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Changing text dates to date serial numbers

In B2: =TEXT(A1,"m/d/yyyy")

format cell as General, copy down


"George" wrote:

I have the following in a spread sheet:
Pay Date
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/05/2007 #VALUE!
01/11/2007 #VALUE!
the Pay Date is in column A1 and the function is in B2
the function that returns the "#VALUE!" error is "=DATEVALUE(A2)

why do I get an error? I'm using Excel 2003 (11.8146.8132) SP2

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
Converting Text Dates to Serial Numbers LPS Excel Worksheet Functions 4 December 12th 07 05:06 PM
Serial Numbers converted to text string JGG Excel Worksheet Functions 3 September 15th 06 05:59 PM
Serial Numbers that begin with Text KRC Excel Discussion (Misc queries) 4 June 27th 06 05:43 PM
Convert serial numbers to dates lrl0870 Excel Worksheet Functions 1 March 6th 06 09:02 PM
Changing date serial numbers rdunne Excel Discussion (Misc queries) 1 April 14th 05 12:57 PM


All times are GMT +1. The time now is 09:35 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"