Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

type mismatch error when using CDate

Status
Not open for further replies.

bcoates

Programmer
Feb 21, 2006
29
US
When the following script is run i get a type mismatch error at the line where i call the CDate function.

dim duedate
dim diff

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile("c:\duedate.txt", 1)


strtemp = objFile.readline

duedate = CDate(strtemp)
diff = datediff("d", Date(), duedate)

the input file contains the date : 02/29/2005 i have tried to enclose the date with ## and "" but to no avail. Any suggestions
 
Is a date the only thing on every single line in the file?

[red]"... isn't sanity really just a one trick pony anyway?! I mean, all you get is one trick, rational thinking, but when you are good and crazy, oooh, oooh, oooh, the sky is the limit!" - The Tick[/red]
 
What is the real value of strtemp ?
[tt]MsgBox "strtemp='" & strtemp & "'"[/tt]

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
The date is the only thing in the file and the value of strtemp is 2/29/2005
 
Are you aware that 2005 was'nt a lap year and thus feb 29th, 2005 is NOT a valid date ?

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
wow i guess that was my bonehead play of the day, thanks for the help
 
A workaround:
a = Split(strtemp, "/")
' convert 2005-02-29 to 2005-03-01
duedate = DateSerial(a(2), a(0), a(1))


Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
The IsDate() function can be helpful in preventing this sort of error.

strtemp = objFile.readline
If IsDate(strtemp) Then
duedate = CDate(strtemp)
Else
MsgBox "Invalid date value: " & strtemp
End If
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top